diff options
Diffstat (limited to 'packages/scripts/resources/bin/gnome-commands.sh')
-rwxr-xr-x | packages/scripts/resources/bin/gnome-commands.sh | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/packages/scripts/resources/bin/gnome-commands.sh b/packages/scripts/resources/bin/gnome-commands.sh new file mode 100755 index 0000000..50d7a8a --- /dev/null +++ b/packages/scripts/resources/bin/gnome-commands.sh @@ -0,0 +1,18 @@ +#!/bin/sh + +bind() { + dconf write "/org/mate/marco/keybinding-commands/command-$1" "$3" + dconf write "org/mate/marco/global-keybindings/run-command-$1" "$2" +} + + +here=`dirname "$0"` +here=`realpath "$here"` +set -x + +bind 1 "'<Super>n'" "'$here/telepath-setpresence.sh available'" +bind 2 "'<Super>b'" "'$here/telepath-setpresence.sh busy'" +bind 3 "'<Super>Return'" "'mate-terminal'" +bind 4 "'<Super>c'" "'$here/dmenu-software.sh'" +bind 5 "'<Super>p'" "'$here/dmenu-pass.sh'" + |