diff options
-rw-r--r-- | README.md | 7 | ||||
-rw-r--r-- | editor_app_mode.sh | 4 | ||||
-rw-r--r-- | editor_type_mode.sh | 4 |
3 files changed, 14 insertions, 1 deletions
@@ -1 +1,6 @@ -# mime_types_editor
\ No newline at end of file +# mime_types_editor + +Utility to change filetype associations. + +It can be launched in two modes: +program-centered and type-centered diff --git a/editor_app_mode.sh b/editor_app_mode.sh new file mode 100644 index 0000000..8a05a9d --- /dev/null +++ b/editor_app_mode.sh @@ -0,0 +1,4 @@ +#!/bin/sh + +cd ./src +python3 mime_editor.py app_mode diff --git a/editor_type_mode.sh b/editor_type_mode.sh new file mode 100644 index 0000000..92d0793 --- /dev/null +++ b/editor_type_mode.sh @@ -0,0 +1,4 @@ +#!/bin/sh + +cd ./src +python3 mime_editor.py cat_mode |