diff options
Diffstat (limited to '.config/polybar/launch')
-rwxr-xr-x | .config/polybar/launch | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/.config/polybar/launch b/.config/polybar/launch new file mode 100755 index 0000000..68d5cf2 --- /dev/null +++ b/.config/polybar/launch @@ -0,0 +1,11 @@ +#!/usr/bin/env bash + +# Terminate already running bar instances +killall -q polybar +# If all your bars have ipc enabled, you can also use +# polybar-msg cmd quit + +# Launch bar1 +echo "---" | tee -a /tmp/polybar1.log +polybar bar1 2>&1 | tee -a /tmp/polybar1.log & disown +echo "Bar launched..." |