[sxhkd] Fix pipe enabled sxhkd start

This commit is contained in:
Marty Oehme 2020-05-29 14:01:47 +02:00
parent 75a8978a0a
commit 4d96b19163
No known key found for this signature in database
GPG Key ID: 0CCB0526EFB9611A
2 changed files with 3 additions and 2 deletions

View File

@ -26,5 +26,6 @@ sxhkd() {
mkfifo "$FIFO"
"$PROG" -s "$FIFO"
fi
}
sxhkd "$@"

View File

@ -61,7 +61,7 @@ type flashfocus >/dev/null 2>&1 && flashfocus -l never &
type redshift >/dev/null 2>&1 && redshift &
# if sxhkd - the key-binding daemon is installed, start it up
type sxhkd >/dev/null 2>&1 && sxhkd -s "$XDG_RUNTIME_DIR/sxhkd_fifo" &
type sxhkd >/dev/null 2>&1 && sxhkd-piped &
# if greenclip - a clipboard manager, integrated with rofi, is installed, start it up
type greenclip >/dev/null 2>&1 && greenclip daemon &