From e9cc14d5be2090a4272edc45f4c77c84dceb29d8 Mon Sep 17 00:00:00 2001 From: Samuel Fadel Date: Mon, 6 Feb 2023 02:19:52 +0100 Subject: Minor improvements. * bin/menu-pass: Simpler sanity checks * bin/zzz: I am overthinking --- bin/zzz | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'bin/zzz') diff --git a/bin/zzz b/bin/zzz index 38f65d4..14d426a 100755 --- a/bin/zzz +++ b/bin/zzz @@ -41,7 +41,7 @@ test -w /sys/power/state || fail "sleep permission denied" ( flock -n 9 || fail "another instance of zzz is running" -printf "Zzzz... " +printf "Zzz... " for hook in /etc/zzz.d/suspend/*; do [ -x "$hook" ] && "$hook" @@ -60,5 +60,5 @@ for hook in /etc/zzz.d/resume/*; do [ -x "$hook" ] && "$hook" done -echo "yawn." +echo "... !" ) 9