You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
348 B
12 lines
348 B
4 years ago
|
#!/usr/bin/env sh
|
||
|
|
||
|
# This script (and anything it calls) should return as quickly as possible
|
||
|
# as it blocks the system from suspending (and processing input) until done
|
||
|
|
||
|
# If this script returns a non-zero exit code, the system will wake up
|
||
|
|
||
|
if [ -x "$XDG_CONFIG_HOME/sxmo/hooks/rtcwake" ]; then
|
||
|
"$XDG_CONFIG_HOME/sxmo/hooks/rtcwake"
|
||
|
exit $?
|
||
|
fi
|