-
-
Save alinefr/d740c2a1cc843ebd4340737dc84b54f3 to your computer and use it in GitHub Desktop.
Xautolock locker and notifier wrapper: systemctl suspend and dunst aware
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
set -eu | |
# This script is intended to be run as the xautolock locker and notifier. | |
# It requires i3lock, and dunst is optional. | |
# Copy or link this script as /usr/bin/slock to let xfce4-session run it. | |
if [ "$(basename "$0")" = "slock" ]; then | |
cmd=lock | |
else | |
cmd=${1:-lock} | |
fi | |
# Is the screen already locked? | |
locked() { pkill -0 --euid "$(id -u)" --exact i3lock; } | |
# Return 0 if suspend is acceptable. | |
suspend_ok() { | |
[ -n "$(2>/dev/null mpc current)" ] && return 1 | |
return 0 | |
} | |
# Print the given message with a timestamp. | |
info() { printf '%s\t%s\n' "$(date)" "$*"; } | |
log() { | |
if [ -n "${LOCK_LOG:-}" ]; then | |
info >>"$LOCK_LOG" "$@" | |
else | |
info "$@" | |
fi | |
} | |
# Control the dunst daemon, if it is running. | |
dunst() { | |
pkill -0 --exact dunst || return 0 | |
case ${1:-} in | |
stop) | |
log "Stopping notifications and locking screen." | |
pkill -USR1 --euid "$(id -u)" --exact dunst | |
;; | |
resume) | |
log "...Resuming notifications." | |
pkill -USR2 --euid "$(id -u)" --exact dunst | |
;; | |
*) | |
echo "dunst argument required: stop or resume" | |
return 1 | |
;; | |
esac | |
} | |
case "$cmd" in | |
lock) | |
dunst stop | |
# Fork both i3lock and its monitor to avoid blocking xautolock. | |
i3lock --ignore-empty-password --beep --inactivity-timeout=10 \ | |
--image="$XDG_CONFIG_HOME/i3/i3lock-img" --nofork & | |
pid="$!" | |
log "Waiting for PID $pid to end..." | |
while 2>/dev/null kill -0 "$pid"; do | |
sleep 1 | |
done | |
dunst resume | |
;; | |
notify) | |
# Notification should not be issued while locked even if dunst is paused. | |
locked && exit | |
log "Sending notification." | |
# grep finds either Xautolock.notify or Xautolock*notify | |
secs="$(xrdb -query | grep -m1 '^Xautolock.notify' | cut -f2)" | |
test -n "$secs" && secs="Locking in $secs seconds" | |
notify-send --urgency="normal" --app-name="xautolock" \ | |
--icon='/usr/share/icons/Adwaita/48x48/actions/system-lock-screen.png' \ | |
-- "Screen Lock" "$secs" | |
;; | |
suspend) | |
if suspend_ok; then | |
log "Suspending system." | |
systemctl suspend | |
else | |
log "Deferring suspend." | |
fi | |
;; | |
debug) | |
log "$@" | |
;; | |
*) | |
log "Unrecognized option: $1" | |
esac |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment