summaryrefslogtreecommitdiffstats
path: root/.config/i3/launch_compton.sh
diff options
context:
space:
mode:
Diffstat (limited to '.config/i3/launch_compton.sh')
-rwxr-xr-x.config/i3/launch_compton.sh12
1 files changed, 0 insertions, 12 deletions
diff --git a/.config/i3/launch_compton.sh b/.config/i3/launch_compton.sh
deleted file mode 100755
index 1b2f5a1..0000000
--- a/.config/i3/launch_compton.sh
+++ /dev/null
@@ -1,12 +0,0 @@
-#!/bin/bash
-
-# Terminate already running bar instances
-killall -q compton
-
-# Wait until the processes have been shut down
-while pgrep -u $UID -x compton >/dev/null; do sleep 1; done
-
-# Launch Polybar, using default config location ~/.config/polybar/config
-compton &
-
-echo "compton launched..."