9 lines
98 B
Bash
Executable File
9 lines
98 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
if [ "$(pidof polybar)" ]; then
|
|
pkill polybar
|
|
else
|
|
start-polybar
|
|
fi
|
|
|