8 lines
125 B
Bash
8 lines
125 B
Bash
#!/bin/bash
|
|
|
|
if ! pgrep -u $UID -x polybar >/dev/null; then
|
|
setsid polybar top &
|
|
else
|
|
setsid polybar-msg cmd toggle &
|
|
fi
|