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_polybar3
1 files changed, 1 insertions, 2 deletions
diff --git a/.local/bin/launch_polybar b/.local/bin/launch_polybar
index ea383cc..51c8e91 100755
--- a/.local/bin/launch_polybar
+++ b/.local/bin/launch_polybar
@@ -1,4 +1,3 @@
-#!/bin/bash
#!/usr/bin/env sh
# Terminate already running bar instances
@@ -7,6 +6,6 @@ killall -q polybar
# Wait until the processes have been shut down
while pgrep -x polybar >/dev/null; do sleep 1; done
-for i in $(polybar -m | awk -F: '{print $1}'); do MONITOR=$i polybar example -c ~/.config/polybar/config & done
+for i in $(polybar -m | awk -F: '{print $1}'); do MONITOR=$i polybar default & done
echo "Bars launched..."