aboutsummaryrefslogtreecommitdiff
path: root/src/config/polybar/preview.sh
diff options
context:
space:
mode:
authorAaditya Dhruv <[email protected]>2023-09-09 18:20:11 -0500
committerAaditya Dhruv <[email protected]>2023-09-09 18:20:11 -0500
commitbe8af930c9ee1ba7002a1bf7fd8090e35544273f (patch)
treedc704a3678bbc57fcb30b5219ffefa6f7f30d48f /src/config/polybar/preview.sh
parent63315cad20c23cc9f3920f3283d6e8b8c7d01058 (diff)
Move .configs to a new main config directory
Moving cofig away from a hidden directory makes it easier to work with. The config directory now no longer represents ~/.config either, it will contain all the configs for user applications, ever for configs which are not in ~/.config on the host system
Diffstat (limited to 'src/config/polybar/preview.sh')
-rwxr-xr-xsrc/config/polybar/preview.sh14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/config/polybar/preview.sh b/src/config/polybar/preview.sh
new file mode 100755
index 0000000..695d051
--- /dev/null
+++ b/src/config/polybar/preview.sh
@@ -0,0 +1,14 @@
+#!/usr/bin/env bash
+
+DIR="$HOME/.config/polybar/forest"
+
+# 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
+
+# Launch the preview bar
+polybar -q top -c "$DIR"/preview.ini &
+polybar -q mid -c "$DIR"/preview.ini &
+polybar -q bottom -c "$DIR"/preview.ini &