Advertisement
twodogsdave

.xinitrc

Mar 22nd, 2016
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 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.  
  14. # Reload Xresources
  15. xrdb -merge .Xresources &
  16.  
  17. # Drop some shadows
  18. compton -b -f --config ~/.config/compton.conf &
  19.  
  20. # sleep 3 && urxvt -e mytmux &
  21. sleep 5 && urxvt -geometry 35x9+1020+580 -e tty-clock -b -c -C 4 -D &
  22.  
  23. # Start window manager
  24. # exec i3 >> ~/.i3/.i3log 2>&1
  25.  
  26. export GTK2_RC_FILES="$HOME/.gtkrc-2.0"
  27. exec i3 --shmlog-size 0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement