diff options
Diffstat (limited to '.config/polybar/launch')
-rwxr-xr-x | .config/polybar/launch | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/.config/polybar/launch b/.config/polybar/launch deleted file mode 100755 index cf23f0b..0000000 --- a/.config/polybar/launch +++ /dev/null @@ -1,15 +0,0 @@ -#!/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..." - -for m in $(polybar --list-monitors | cut -d":" -f1); do - MONITOR=$m polybar --reload bar1 & -done |