summaryrefslogblamecommitdiffstats
path: root/core/modules/idleaction/data/etc/X11/Xsession.d/95-xscreensaver
blob: 1d436bce490625fcb1d3fcbf3600c4502a5dcda0 (plain) (tree)
1
2
3
4
5
6
7
8


                           
                  
                     


                                       


                                              
                                                              
         

                                                                                              
                             

                                           
                                     
                                            
















                                                        

                                                                  






                                                      
          
                                                      
                                
                              
            
                                                                      
          
                                                            

                                                                    

                      
                      
                       
                    

                   



                      
                      
                
                                                       

                                               
   


                                                                           
                                 
         
  
 

    
#!/bin/ash

if which xscreensaver; then
	DPMS=False
	AUTOLOCK=True
	secsToTime() {
		local NUM SECS MINS HRS
		NUM="$1"
		SECS=$(( NUM % 60 ))
		MINS=$(( ( NUM / 60 ) % 60 ))
		HRS=$(( ( NUM / 3600 ) % 60 ))
		printf "%02d:%02d:%02d" "$HRS" "$MINS" "$SECS"
	}
	[ -z "$UID" ] && UID=$(id -u)
	[ -z "$HOME" ] && HOME="$(getent passwd "$UID" | head -n 1 | awk -F ':' '{print $6}')"
	. /opt/openslx/config
	SBY="${SLX_SCREEN_STANDBY_TIMEOUT}"
	SVR="${SLX_SCREEN_SAVER_TIMEOUT}"
	if [ -n "${SLX_EXAM}" ]; then
		SLX_SCREEN_SAVER_GRACE_TIME=
		AUTOLOCK=False
		SBY=0
		SVR=0
	elif [ -z "$SBY" ]; then
		SBY=0
	elif [ "$SBY" -gt 0 ] && [ "$SBY" -lt 60 ]; then
		SBY=60
	elif ! [ "$SBY" -ge 0 ]; then # isNumeric?
		SBY=0
	fi
	# Create config value for standby timeout
	if [ "$SBY" -gt 0 ]; then
		DPMS=True
		STANDBY="$( secsToTime "$SBY" )"
	else
		STANDBY="99:00:00"
	fi
	# Explicit screen saver timeout set. Handle 0 as disabled.
	# Fix values below one minute:
	if [ "$SVR" -gt 0 ] && [ "$SVR" -lt 60 ]; then
		SVR=60
	fi
	if [ "$SVR" -gt 0 ]; then
		TIMEOUT="$( secsToTime "$SVR" )"
	else
		TIMEOUT="99:00:00"
	fi
	if [ -z "$SLX_SCREEN_SAVER_GRACE_TIME" ]; then
		GRACE="99:00:00"
		AUTOLOCK=False
	else
		GRACE="$( secsToTime "$SLX_SCREEN_SAVER_GRACE_TIME" )"
	fi
	# Always overwrite this file -- better for exam mode
	cat > "$HOME/.xscreensaver" <<EOF
# Automatically generated on $(date) -- modifications might get lost
mode:         one
cycle:        99:00:00
timeout:      $TIMEOUT
lock:         $AUTOLOCK
lockTimeout:  $GRACE
fade:         False
unfade:       False
dpmsEnabled:  $DPMS
dpmsStandby:  $STANDBY
dpmsSuspend:  $STANDBY
dpmsOff:      $STANDBY
dpmsFullThrottle: True
newLoginCommand:
externalUngrabCommand: /opt/openslx/xscreensaver/ungrab
programs:     /opt/openslx/bin/bwlp-screensaver
selected:     0
EOF
	(
	# HACK: This prevents xscreensaver from ever locking
	[ -n "$SLX_EXAM" ] && export RUNNING_UNDER_GDM="not really but yea"
	xscreensaver -no-splash &
	)
fi

true