aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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