aboutsummaryrefslogtreecommitdiffstats
path: root/polybar/launch.sh
diff options
context:
space:
mode:
Diffstat (limited to 'polybar/launch.sh')
-rwxr-xr-xpolybar/launch.sh13
1 files changed, 0 insertions, 13 deletions
diff --git a/polybar/launch.sh b/polybar/launch.sh
deleted file mode 100755
index 1ab828a..0000000
--- a/polybar/launch.sh
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/usr/bin/env bash
-
-# Terminate already running bar instances
-killall -q polybar
-
-# Wait until the processes have been shut down
-while pgrep -u $UID -x polybar >/dev/null; do sleep 1; done
-
-polybar main &
-polybar second &
-polybar third &
-
-echo "Bars launched..."