10 lines
187 B
Bash
10 lines
187 B
Bash
|
|
#!/usr/bin/env bash
|
||
|
|
|
||
|
|
printf '%s\n' "execute xautorandr" >>"$LOGFILE"
|
||
|
|
|
||
|
|
xautorandr
|
||
|
|
|
||
|
|
printf '%s\n' "disable screen blanking" >>"$LOGFILE"
|
||
|
|
xset -dpms & &>> $LOGFILE
|
||
|
|
xset s off & &>> $LOGFILE
|