mirror of
https://github.com/olexsmir/dotfiles.git
synced 2026-01-15 08:41:34 +02:00
9 lines
150 B
Bash
Executable file
9 lines
150 B
Bash
Executable file
#!/bin/sh
|
|
if [ $(pgrep polybar) ]
|
|
then
|
|
polybar i3bar >/dev/null
|
|
#~/.config/polybar/launch.sh
|
|
else
|
|
killall -q polybar
|
|
pkill polybar
|
|
fi
|