diff options
author | Amin Bandali <amin@aminb.org> | 2016-11-18 22:28:31 -0500 |
---|---|---|
committer | Amin Bandali <amin@aminb.org> | 2016-11-18 22:28:31 -0500 |
commit | 7791c200d9b385f722863cbaf2341dafffdb272f (patch) | |
tree | dcecb593622cd4aea06a27332f69b606226889d2 /sxhkd/.local/bin | |
parent | b447fcc5a248329d10d995726822e6e001d9eec2 (diff) | |
download | configs-7791c200d9b385f722863cbaf2341dafffdb272f.tar.gz configs-7791c200d9b385f722863cbaf2341dafffdb272f.tar.xz configs-7791c200d9b385f722863cbaf2341dafffdb272f.zip |
Update bspwm & sxhkd dots
Diffstat (limited to 'sxhkd/.local/bin')
-rwxr-xr-x | sxhkd/.local/bin/em | 13 | ||||
-rwxr-xr-x | sxhkd/.local/bin/toggle-mouse | 11 |
2 files changed, 0 insertions, 24 deletions
diff --git a/sxhkd/.local/bin/em b/sxhkd/.local/bin/em deleted file mode 100755 index 6d087f3..0000000 --- a/sxhkd/.local/bin/em +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/sh - -if [ -z "$DISPLAY" ]; then - IS_GRAPHICAL=true -else - IS_GRAPHICAL=$(emacs --batch -Q --eval='(if (fboundp '"'"'tool-bar-mode) (message "true") (message "false"))' 2>&1) -fi - -if $IS_GRAPHICAL; then - emacsclient -a "" -nc "$@" -else - emacsclient -a "" -t "$@" -fi diff --git a/sxhkd/.local/bin/toggle-mouse b/sxhkd/.local/bin/toggle-mouse deleted file mode 100755 index 906fdbb..0000000 --- a/sxhkd/.local/bin/toggle-mouse +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/bash - -touchpad_off="$(synclient -l | grep TouchpadOff | cut -d'=' -f 2 | xargs)" - -if [ "$touchpad_off" = "0" ]; then - synclient TouchpadOff=1 - unclutter -idle 1 & -else - synclient TouchpadOff=0 - killall unclutter -fi |