7 lines
120 B
Bash
Executable File
7 lines
120 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
while pgrep polybar >/dev/null; do
|
|
killall -q polybar && sleep 0.5
|
|
done
|
|
echo "Bars stopped..."
|