Compare commits
2 Commits
166e3a2490
...
138cf65205
Author | SHA1 | Date |
---|---|---|
Ray Elliott | 138cf65205 | |
Ray Elliott | 05c3068f20 |
|
@ -15,6 +15,6 @@ case "$_host" in
|
|||
esac
|
||||
|
||||
if [ -n "$_duration" ]; then
|
||||
sleep 1
|
||||
sleep "$_duration"
|
||||
killall polybar
|
||||
fi
|
||||
|
|
|
@ -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