9 lines
103 B
Bash
Executable File
9 lines
103 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
if pgrep -x polybar >/dev/null; then
|
|
pkill polybar
|
|
else
|
|
start-polybar
|
|
fi
|
|
|