17 lines
379 B
Bash
Executable File
17 lines
379 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
installdir=/
|
|
|
|
XDG_CONFIG_HOME="${XDG_CONFIG_HOME:-$HOME/.config}"
|
|
defaultpanel="$XDG_CONFIG_HOME/herbstluftwm/panel.sh"
|
|
|
|
[ -x "$defaultpanel" ] || defaultpanel="$installdir/etc/xdg/herbstluftwm/panel.sh"
|
|
|
|
panelcmd="${1:-$defaultpanel}"
|
|
|
|
herbstclient emit_hook quit_panel
|
|
|
|
for i in $(herbstclient list_monitors | cut -d':' -f1) ; do
|
|
"$panelcmd" $i &
|
|
done
|