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.
11 lines
252 B
11 lines
252 B
4 years ago
|
#!/usr/bin/env sh
|
||
|
|
||
|
# This script is called prior to suspending
|
||
|
|
||
|
# If this script returns a non-zero exit code, suspension will be cancelled
|
||
|
|
||
|
if [ -x "$XDG_CONFIG_HOME/sxmo/hooks/presuspend" ]; then
|
||
|
"$XDG_CONFIG_HOME/sxmo/hooks/presuspend"
|
||
|
exit $?
|
||
|
fi
|