summaryrefslogtreecommitdiffstats
path: root/.local/bin/launch_polybar
diff options
context:
space:
mode:
Diffstat (limited to '.local/bin/launch_polybar')
-rwxr-xr-x.local/bin/launch_polybar9
1 files changed, 0 insertions, 9 deletions
diff --git a/.local/bin/launch_polybar b/.local/bin/launch_polybar
deleted file mode 100755
index 8786be6..0000000
--- a/.local/bin/launch_polybar
+++ /dev/null
@@ -1,9 +0,0 @@
-#!/bin/sh
-
-# Terminate already running bar instances
-killall -q polybar
-
-# Wait until the processes have been shut down
-while pidof polybar >/dev/null; do sleep 1; done
-
-for i in $(polybar -m | awk -F: '{print $1}'); do MONITOR=$i polybar default & done