aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authori026e <klev.paul@gmail.com>2016-12-15 10:41:32 +0300
committeri026e <klev.paul@gmail.com>2016-12-15 10:41:32 +0300
commit1fb11ab2d68f984572ce6c573c33d850573292aa (patch)
tree6424b45dfa107a5778d9b3e43fa80cc82d55d3c4
parenttranslations (diff)
downloadmime_types_editor-1fb11ab2d68f984572ce6c573c33d850573292aa.tar.gz
mime_types_editor-1fb11ab2d68f984572ce6c573c33d850573292aa.tar.bz2
mime_types_editor-1fb11ab2d68f984572ce6c573c33d850573292aa.zip
readme
-rw-r--r--README.md7
-rw-r--r--editor_app_mode.sh4
-rw-r--r--editor_type_mode.sh4
3 files changed, 14 insertions, 1 deletions
diff --git a/README.md b/README.md
index 01017ba..bdb76a2 100644
--- a/README.md
+++ b/README.md
@@ -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
bgstack15