Advertisement
martadinata

evilwm xinitrc

Mar 22nd, 2012
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #!/bin/bash
  2. ##############################
  3. # ~/.xinitrc #
  4. ##############################
  5. ## D-Bus ##
  6. if which dbus-launch >/dev/null && test -z "$DBUS_SESSION_BUS_ADDRESS"; then
  7. eval "$(dbus-launch --sh-syntax --exit-with-session)"
  8. fi
  9. ## trackpad ## tapbutton off by default ##
  10. synclient VertTwoFingerScroll=1
  11. synclient HorizTwoFingerScroll=1
  12. synclient TapButton1=0
  13. ## dualscreen ## edit if needed ##
  14. xrandr --output LVDS --mode 1024x768 --pos 0x0 --rotate normal --output VGA-0 --mode 1024x768 --pos 1024x0 --rotate normal
  15. ## set wallpaper / color the screen ##
  16. #xsetroot -solid grey20 &
  17. feh --no-xinerama --bg-scale ~/.diegy_setups/bg.png ## uncomment to display default wallpaper ##
  18. #nitrogen --restore & ## uncomment to run your personnal wallpaper ##
  19. ## launch terminal deamon ##
  20. urxvtd -q- -f -o
  21. ## set session-killer
  22. setxkbmap -option terminate:ctrl_alt_bksp
  23. ## launch session
  24. exec ck-launch-session $HOME/bin/evilwm-start.sh
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement