summaryrefslogtreecommitdiffstats
path: root/bspwm/launch.sh
diff options
context:
space:
mode:
authorSalad <water_appreciator@protonmail.com>2020-06-07 16:34:35 +0200
committerSalad <water_appreciator@protonmail.com>2020-06-07 16:34:35 +0200
commitbc3ee7ec71437dbf792b6c05dd8f3cfe60c5131e (patch)
tree5b789853132aa7c83baddf3b206803ac28b0ff92 /bspwm/launch.sh
parentpolybar fix (diff)
downloaddotfiles-bc3ee7ec71437dbf792b6c05dd8f3cfe60c5131e.tar.gz
dotfiles-bc3ee7ec71437dbf792b6c05dd8f3cfe60c5131e.tar.bz2
dotfiles-bc3ee7ec71437dbf792b6c05dd8f3cfe60c5131e.tar.xz
dotfiles-bc3ee7ec71437dbf792b6c05dd8f3cfe60c5131e.tar.zst
dotfiles-bc3ee7ec71437dbf792b6c05dd8f3cfe60c5131e.zip
on e la
Diffstat (limited to '')
-rwxr-xr-xbspwm/launch.sh15
1 files changed, 0 insertions, 15 deletions
diff --git a/bspwm/launch.sh b/bspwm/launch.sh
deleted file mode 100755
index 822de9c..0000000
--- a/bspwm/launch.sh
+++ /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 and bar2
-#echo "---" | tee -a /tmp/polybar1.log /tmp/polybar2.log
-#polybar example >>/tmp/polybar1.log 2>&1 &
-for m in $(polybar --list-monitors | cut -d":" -f1); do
- MONITOR=$m polybar --reload example &
-done
-
-echo "Bars launched..."