13 lines
285 B
Fish
13 lines
285 B
Fish
|
#!/usr/local/bin/fish
|
||
|
|
||
|
set -l installdir=/
|
||
|
|
||
|
set -l XDG_CONFIG_HOME="${XDG_CONFIG_HOME:-$HOME/.config}"
|
||
|
set -l defaultpanel="$XDG_CONFIG_HOME/herbstluftwm/panel.fish"
|
||
|
|
||
|
herbstclient emit_hook quit_panel
|
||
|
|
||
|
for i in (herbstclient list_monitors | cut -d':' -f1)
|
||
|
"$defaultpanel" $i &
|
||
|
end
|