Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/bin/sh
- # Playing startup sound because raisins
- (sleep 1; paplay ${HOME}/startup.wav) &
- # Starting the Media Player Daemon
- #(mpd) &
- # Merging Xresources, else they won't be set in URXVT
- xrdb -merge "${HOME}/.Xresources"
- # Forcing display sleep off
- #(DISPLAY=:0.0 xset -dpms s off)
- #(DISPLAY=:0.1 xset -dpms s off)
- # Load ALL of the Conky's
- (sleep 2; $HOME/.config/conky/conky-launch.sh) &
- # Set Overclocks for Nvidia card, these do not require root
- #nvidia-settings -a "[gpu:0]/GPUGraphicsClockOffset[3]=200" -a "[gpu:0]/GPUMemoryTransferRateOffset[3]=400"
- #nvidia-settings -a "[gpu:1]/GPUGraphicsClockOffset[3]=-90" -a "[gpu:1]/GPUMemoryTransferRateOffset[3]=0"
- # We need to tell X that the only monitor is primary, for some reason...
- #xrandr --output DP-2 --primary
- # Finally, start our window manager (Awesome)
- #DISPLAY=:0.0 exec awesome -c $HOME/.config/awesome/secondary.lua &
- #DISPLAY=:0.1 exec awesome
- #exec awesome
- exec awesome -c $HOME/.config/awesome/secondary.lua
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement