22 lines
384 B
Bash
Executable File
22 lines
384 B
Bash
Executable File
#!/bin/zsh
|
|
source ${0:a:h}/xorg.zsh
|
|
|
|
xrandr \
|
|
--output DP-3-1 \
|
|
--primary \
|
|
--auto \
|
|
--mode 1920x1080 \
|
|
--rotate normal \
|
|
--pos 0x0 \
|
|
--output eDP-1 \
|
|
--off \
|
|
;
|
|
|
|
xset dpms 0 0 0 && xset s noblank && xset s off \
|
|
&& notify-send 'DPMS' 'disabled screen blank'
|
|
|
|
(pkill compton; sleep 0.5; compton;) &
|
|
|
|
$DOTWRYN/bin/set-background random
|
|
$DOTWRYN/bin/play-sound gamedock
|