aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/run-xmonad.sh
diff options
context:
space:
mode:
authorDon Stewart <dons@cse.unsw.edu.au>2007-06-10 08:28:06 +0200
committerDon Stewart <dons@cse.unsw.edu.au>2007-06-10 08:28:06 +0200
commit09a6b64088c8742de61a1151120f7f077d332bdf (patch)
treed206a544c9f684c5eaed99696b14e0a01180c296 /scripts/run-xmonad.sh
parente0afe7f27200f1e5b2333bb99226e3345fdd63a4 (diff)
downloadXMonadContrib-09a6b64088c8742de61a1151120f7f077d332bdf.tar.gz
XMonadContrib-09a6b64088c8742de61a1151120f7f077d332bdf.tar.xz
XMonadContrib-09a6b64088c8742de61a1151120f7f077d332bdf.zip
no need for ./scripts/xmonad-status.c, update run-xmonad.sh
darcs-hash:20070610062806-9c5c1-01d224b8aece44100df09ce8294b0ee7c62eabe8.gz
Diffstat (limited to '')
-rwxr-xr-xscripts/run-xmonad.sh10
1 files changed, 6 insertions, 4 deletions
diff --git a/scripts/run-xmonad.sh b/scripts/run-xmonad.sh
index 006d2b5..d0f97ad 100755
--- a/scripts/run-xmonad.sh
+++ b/scripts/run-xmonad.sh
@@ -24,11 +24,13 @@ rm -f $PIPE
[ -p $PIPE ] || exit
# launch the external 60 second clock, and launch the workspace status bar
-xmonad-clock | dzen2 -e '' -x 300 -w 768 -ta r -fg $FG -bg $BG -fn $FONT &
-xmonad-status < $PIPE | dzen2 -e '' -w 300 -ta l -fg $FG -bg $BG -fn $FONT &
+xmonad-clock | dzen2 -e '' -x 300 -w 768 -ta r -fg $FG -bg $BG -fn $FONT &
-# now go for it
-xmonad > $PIPE &
+# and a workspace status bar (this `cat' shouldn't be needed!)
+dzen2 -e '' -w 300 -ta l -fg $FG -bg $BG -fn $FONT < $PIPE &
+
+# go forit
+xmonad > $PIPE &
# wait for xmonad
wait $!