diff --git a/user_config/bin/shellmen b/user_config/bin/shellmen new file mode 100755 index 0000000..b83de13 --- /dev/null +++ b/user_config/bin/shellmen @@ -0,0 +1,17 @@ +#!/bin/bash + +# . CONFIG.sh + +# set -o xtrace ## To debug scripts +# set -o errexit ## To exit on error +# set -o errunset ## To exit if a variable is referenced but not set + + +function main() { + call_path=`pwd` + path="" + + cd "/opt/" + python /opt/shellmen.zip "$@" +} +main "$@"; diff --git a/user_config/usr/share/shellmen/contexct_menu.json b/user_config/usr/share/shellmen/contexct_menu.json new file mode 100644 index 0000000..5759064 --- /dev/null +++ b/user_config/usr/share/shellmen/contexct_menu.json @@ -0,0 +1,16 @@ +{ + "Open Actions": { + "Open": ["STOCK_OPEN", "open"], + "Open With": ["STOCK_OPEN", "open_with"], + "Execute": ["STOCK_EXECUTE", "execute"], + "Execute in Terminal": ["STOCK_EXECUTE", "execute_in_terminal"] + }, + "File Actions": { + "New": ["STOCK_ADD", "create"], + "Rename": ["STOCK_EDIT", "rename"], + "Cut": ["STOCK_CUT", "cut"], + "Copy": ["STOCK_COPY", "copy"], + "Paste": ["STOCK_PASTE", "paste"] + }, + "Plugins": {} +} diff --git a/user_config/usr/share/shellmen/key-bindings.json b/user_config/usr/share/shellmen/key-bindings.json new file mode 100644 index 0000000..a172eea --- /dev/null +++ b/user_config/usr/share/shellmen/key-bindings.json @@ -0,0 +1,23 @@ +{ + "keybindings": { + "help" : "F1", + "rename_files" : ["F2", "e"], + "open_terminal" : "F4", + "refresh_tab" : ["F5", "r"], + "delete_files" : "Delete", + "tggl_top_main_menubar" : "Alt_L", + "trash_files" : "t", + "tear_down" : "q", + "go_up" : "Up", + "go_home" : "slash", + "grab_focus_path_entry" : "l", + "open_files" : "o", + "show_hide_hidden_files" : "h", + "keyboard_create_tab" : "t", + "keyboard_close_tab" : "w", + "keyboard_copy_files" : "c", + "keyboard_cut_files" : "x", + "paste_files" : "v", + "show_new_file_menu" : "n" + } +} diff --git a/user_config/usr/share/shellmen/stylesheet.css b/user_config/usr/share/shellmen/stylesheet.css new file mode 100644 index 0000000..f38e46f --- /dev/null +++ b/user_config/usr/share/shellmen/stylesheet.css @@ -0,0 +1,34 @@ +/* Set fm to have transparent window */ +* { + /* background: rgba(0, 0, 0, 0.14); */ + color: rgba(255, 255, 255, 1); + border: 2px solid rgba(0, 0, 0, 0.0); +} + +.base-container { + margin: 10px; +} + + + + +/* * selection { + background-color: rgba(116, 0, 0, 0.65); + color: rgba(255, 255, 255, 0.5); +} */ + +/* Rubberband coloring */ +/* .rubberband, +rubberband, +flowbox rubberband, +treeview.view rubberband, +.content-view rubberband, +.content-view .rubberband, +XfdesktopIconView.view .rubberband { + border: 1px solid #6c6c6c; + background-color: rgba(21, 158, 167, 0.57); +} + +XfdesktopIconView.view:active { + background-color: rgba(172, 102, 21, 1); +} */