diff options
Diffstat (limited to 'sxhkd')
-rw-r--r-- | sxhkd/.config/sxhkd/sxhkdrc | 2 | ||||
-rwxr-xr-x | sxhkd/.local/bin/em | 13 |
2 files changed, 14 insertions, 1 deletions
diff --git a/sxhkd/.config/sxhkd/sxhkdrc b/sxhkd/.config/sxhkd/sxhkdrc index 013eea9..0b98505 100644 --- a/sxhkd/.config/sxhkd/sxhkdrc +++ b/sxhkd/.config/sxhkd/sxhkdrc @@ -90,7 +90,7 @@ super + x slimlock super + e - emacs + em super + r firefox diff --git a/sxhkd/.local/bin/em b/sxhkd/.local/bin/em new file mode 100755 index 0000000..6d087f3 --- /dev/null +++ b/sxhkd/.local/bin/em @@ -0,0 +1,13 @@ +#!/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 |