blob: c0a07707c8fd25e5709badc7f31fbcd0b5e83ac5 (
plain)
1
2
3
4
5
6
|
# After a system has booted, check what time it is and pre-load the
# filesystem cache with a standardized desktop session
SHELL=/bin/bash
@reboot desktop-autoloader [ $(date +\%s) -lt $(date -d 07:30 +\%s) ] && sleep "$(( ( RANDOM % 200 ) + 61 ))" && desktop-autoloader
|