aboutsummaryrefslogtreecommitdiffstats
path: root/.config/openbox/scripts/xcompmgr.sh
diff options
context:
space:
mode:
Diffstat (limited to '.config/openbox/scripts/xcompmgr.sh')
-rwxr-xr-x.config/openbox/scripts/xcompmgr.sh25
1 files changed, 0 insertions, 25 deletions
diff --git a/.config/openbox/scripts/xcompmgr.sh b/.config/openbox/scripts/xcompmgr.sh
deleted file mode 100755
index e59eb6a..0000000
--- a/.config/openbox/scripts/xcompmgr.sh
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/bin/sh
-
-case "$1" in
- set)
- killall xcompmgr
- sed -i 's/#xcompmgr.*$/xcompmgr \&/g' ~/.config/openbox/autostart.sh
- xcompmgr &
- ;;
- unset)
- sed -i 's/^xcompmgr.*$/#xcompmgr \&/g' ~/.config/openbox/autostart.sh
- killall xcompmgr
- ;;
- setshaded)
- killall xcompmgr
- sed -i 's/#xcompmgr.*$/xcompmgr -CfF \&/g' ~/.config/openbox/autostart.sh
- xcompmgr -CfF &
- ;;
- setshadowshade)
- killall xcompmgr
- sed -i 's/#xcompmgr.*$/xcompmgr -CcfF \&/g' ~/.config/openbox/autostart.sh
- xcompmgr -CcfF &
- ;;
- *)
- echo "This script accepts the following arguments : set, setshaded, setshadowshade, unset"
-esac