mirror of
https://github.com/LukeSmithxyz/voidrice.git
synced 2026-03-20 01:37:45 +01:00
11 lines
292 B
Bash
Executable File
11 lines
292 B
Bash
Executable File
#!/usr/bin/env sh
|
|
|
|
[ "$INACTIVITY" ] || export INACTIVITY=900
|
|
|
|
# Duration ( in minutes )
|
|
dur=$(( INACTIVITY / 60 ))
|
|
|
|
# Suspends after completion
|
|
timeout "$dur"m ffplay -volume 0 -exitonkeydown -exitonmousedown -loop "$dur" -fs ~/.config/screensaver.mp4 >/dev/null 2>&1 || systemctl suspend
|
|
|