summaryrefslogtreecommitdiff
path: root/dwm-launch.sh
diff options
context:
space:
mode:
Diffstat (limited to 'dwm-launch.sh')
-rwxr-xr-xdwm-launch.sh19
1 files changed, 0 insertions, 19 deletions
diff --git a/dwm-launch.sh b/dwm-launch.sh
deleted file mode 100755
index 62e4eba..0000000
--- a/dwm-launch.sh
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/bin/sh
-
-compton -cCGb
-feh --bg-fill /var/wallpaper
-xrdb ~/.Xresources
-xautolock -locker ~/source/scripts/slock-fortune.sh &
-~/source/scripts/dwm-status.sh &
-
-logfile="/var/log/dwm.log"
-
-while true; do
-
- if [ -O $logfile ]; then
- dwm 2> $logfile
- else
- dwm 2>&1 > /dev/null
- fi
-
-done