Advertisement
cirrus

.xinitrc

Jan 26th, 2013
170
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. #!/bin/zsh -l #this is for openbox on tty1 & xmonad on tty6
  2.  
  3. export \
  4. BROWSER=firefox \
  5. EDITOR=vim VISUAL=vim \
  6. PATH="$HOME/.cabal/bin:$PATH"
  7.  
  8. hsetroot -fill $HOME/.themes/wallpapers/xmonad.jpg
  9.  
  10. case "$1" in
  11. (xmonad) exec xmonad ;;
  12. (*) exec openbox-session ;;
  13. esac
  14. xset s off &
  15. xset -dpms &
  16. setterm -blank 0 -powerdown 0 &
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement