55fe9b0d20a264270c47e392cc734a16d63472a8
[distro-setup] / lightdm-start
1 #!/bin/bash
2
3 sudo xhost +si:localuser:lightdm # grants localuser rights to X session
4 sudo su lightdm -s /bin/bash <<'EOF'
5
6 xset dpms 0 0 120
7
8 EOF
9
10
11 # i wanted the system to stop going to sleep, so
12 # I did this,
13 #https://askubuntu.com/questions/942366/how-to-disable-sleep-suspend-at-login-screen
14 #/usr/bin/xset -dpms
15 #/usr/bin/xset s off
16
17 # but then i started auto rebooting and found that the
18 # screen doesnt go into power save mode, so copied xset dpms 0 0 120 from here
19 # https://itectec.com/ubuntu/ubuntu-how-to-control-lightdm-power-saving-preferences/