11 lines
292 B
Bash
11 lines
292 B
Bash
|
#!/usr/bin/env zsh
|
||
|
|
||
|
if ! whence hc; then
|
||
|
hc() { herbstclient "$@"; }
|
||
|
fi
|
||
|
|
||
|
hc keybind Mod4-apostrophe spawn dunstctl close
|
||
|
hc keybind Mod4-quotedbl spawn dunstctl close-all
|
||
|
hc keybind Mod4-Control-apostrophe spawn dunstctl history-pop
|
||
|
hc keybind Mod4-Mod1-apostrophe spawn dunstctl context
|