Advertisement
Guest User

Untitled

a guest
Aug 30th, 2014
260
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. #!/bin/sh
  2. #
  3. # ~/.xinitrc
  4. #
  5. # Executed by startx (run your window manager from here)
  6.  
  7. if [ -d /etc/X11/xinit/xinitrc.d ]; then
  8. for f in /etc/X11/xinit/xinitrc.d/*; do
  9. [ -x "$f" ] && . "$f"
  10. done
  11. unset f
  12. fi
  13. export VISUAL="subl"
  14. export EDITOR="nano"
  15. xrdb -merge ~/.Xresources &
  16. xcompmgr &
  17. unclutter &
  18. numlockx &
  19. wallpaperd &
  20. xset r rate 290 40 &
  21. exec pekwm
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement