summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Ritter <xeno@thehappy.de>2009-06-01 21:52:19 +0200
committerStefan Ritter <xeno@thehappy.de>2009-06-01 21:52:19 +0200
commit197dea20828f58de25b5557d4330f8fddcd0eaea (patch)
treef5acb6f72d45be7defe55ee8dec31e9d5932e5dc
parentd261ec7c259d5261dfb68f2f0ba43d319d3291f4 (diff)
Fixes:
* Added sleep to dwm_bar * Cleaned xinitrc
-rwxr-xr-xdwm_bar.sh1
-rwxr-xr-xxinitrc12
2 files changed, 2 insertions, 11 deletions
diff --git a/dwm_bar.sh b/dwm_bar.sh
index 46f9d45..7df59de 100755
--- a/dwm_bar.sh
+++ b/dwm_bar.sh
@@ -3,6 +3,7 @@
while true;
do
xsetroot -name "$(ip r | awk '{print $9}' | head -n 1) $(date) $(hostname) "
+ sleep 1
done
# vim: set tw=0:
diff --git a/xinitrc b/xinitrc
index 8a9ef55..611829c 100755
--- a/xinitrc
+++ b/xinitrc
@@ -1,25 +1,15 @@
#!/bin/bash
WM='dwm'
-# SSH KEYAGENT
keychain --clear -q ~/.ssh/id_rsa
source ~/.keychain/`hostname`-sh > /dev/null
-# RANDOM WALLPAPER
feh --bg-scale ~/pictures/wallpaper/$(ls ~/pictures/wallpaper/ | sed -n $((RANDOM%$(ls ~/pictures/wallpaper/ | wc -l)+1))p)
+xset s off
-#xscreensaver -no-splash &
-wicd-client &
-
-# Awesome statusbar
-#killall awesome_bar.sh
-#etc/awesome_bar.sh &
-
-# dwm stuff
killall dwm_bar.sh
etc/dwm_bar.sh &
-# LET'S GO
exec $WM
# vim: set tw=0: