summaryrefslogtreecommitdiff
path: root/.config/polybar
diff options
context:
space:
mode:
authorAdam <adam@adast.xyz>2022-05-31 16:28:16 +0200
committerAdam <adam@adast.xyz>2022-06-02 11:21:35 +0200
commitc378c2e6190afbd9538f0a743e21949a98798056 (patch)
treebf22c8fc72ddc48eb923a54d8269ec6149437c24 /.config/polybar
parent14d624ea44f3e112f613b858d380f560ffdaec87 (diff)
Moved polybar launch script to .local/bin
Diffstat (limited to '.config/polybar')
-rwxr-xr-x.config/polybar/launch15
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