Advertisement
TheAtomicAss

xinitrc

Jun 12th, 2016
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.96 KB | None | 0 0
  1. #!/bin/sh
  2.  
  3. # Playing startup sound because raisins
  4. (sleep 1; paplay ${HOME}/startup.wav) &
  5.  
  6. # Starting the Media Player Daemon
  7. #(mpd) &
  8.  
  9. # Merging Xresources, else they won't be set in URXVT
  10. xrdb -merge "${HOME}/.Xresources"
  11.  
  12. # Forcing display sleep off
  13.  
  14. #(DISPLAY=:0.0 xset -dpms s off)
  15. #(DISPLAY=:0.1 xset -dpms s off)
  16.  
  17. # Load ALL of the Conky's
  18. (sleep 2; $HOME/.config/conky/conky-launch.sh) &
  19.  
  20. # Set Overclocks for Nvidia card, these do not require root
  21. #nvidia-settings -a "[gpu:0]/GPUGraphicsClockOffset[3]=200" -a "[gpu:0]/GPUMemoryTransferRateOffset[3]=400"
  22. #nvidia-settings -a "[gpu:1]/GPUGraphicsClockOffset[3]=-90" -a "[gpu:1]/GPUMemoryTransferRateOffset[3]=0"
  23.  
  24. # We need to tell X that the only monitor is primary, for some reason...
  25. #xrandr --output DP-2 --primary
  26.  
  27. # Finally, start our window manager (Awesome)
  28.  
  29. #DISPLAY=:0.0 exec awesome -c $HOME/.config/awesome/secondary.lua &
  30. #DISPLAY=:0.1 exec awesome
  31. #exec awesome
  32. exec awesome -c $HOME/.config/awesome/secondary.lua
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement