14 lines
405 B
Bash
Executable file
14 lines
405 B
Bash
Executable file
#!/usr/bin/env zsh
|
|
|
|
if ! whence hc; then
|
|
function hc() { herbstclient "$@"; }
|
|
fi
|
|
|
|
# Run things with rofi
|
|
hc keybind Mod4-r spawn rofi -show run -m 1
|
|
|
|
# Use a special rofi configuration that allows windows to be locked by
|
|
# herbstluftwm.
|
|
hc keybind Mod4-w spawn rofi -show window -m 1 \
|
|
-window-command "$HOME/usr/bin/hlwm-switch-to-window {window}" \
|
|
-config "$HOME/.config/rofi/windows.conf"
|