Signed-off-by: fbt <fbt@fleshless.org>
This commit is contained in:
2018-08-07 22:31:39 +03:00
parent 22eac4d45f
commit 7e99d071c0
17 changed files with 33 additions and 30 deletions

View File

@@ -0,0 +1,33 @@
#!/usr/bin/env ssm
# vim: ft=sh
service_respawn='true'
service_command="$HOME/bin/lockd"
service_args=( i3lock-extra -s -o ~/pics/lock.png -g -p )
function do_notify {
declare output; var output
output = "$( "$@" )"
if output; then
notify-send "ssm ($service_name)" "$output"
fi
}
function start_or_lock {
if status; then
notify-send 'ssm' "Starting $service_name"
start
else
notify-send 'ssm' "Locking..."
kill -USR1 "$service_pid"
fi
}
function toggle {
if status; then
do_notify "$0" "$service_name" stop
else
do_notify "$0" "$service_name" start
fi
}