add polybar toggle script
This commit is contained in:
parent
05c3068f20
commit
138cf65205
|
@ -0,0 +1,15 @@
|
|||
#!/bin/sh
|
||||
|
||||
if killall polybar; then
|
||||
exit 0
|
||||
else
|
||||
_host=$(hostname)
|
||||
case "$_host" in
|
||||
Patricia)
|
||||
polybar HDMI-0 &
|
||||
polybar DVI-0 &
|
||||
;;
|
||||
Pamela)
|
||||
;;
|
||||
esac
|
||||
fi
|
Loading…
Reference in New Issue