Compare commits

...

2 Commits

Author SHA1 Message Date
John Mertz a08cfa4d96 Pureblack lockscreen 2022-07-23 03:59:03 -04:00
John Mertz 2933abcabb Update usage and add some TODO comments 2022-07-23 03:58:11 -04:00
2 changed files with 11 additions and 4 deletions

View File

@ -16,7 +16,7 @@ else
fi
if [ "$res" == "🔒 Lock" ]; then
${WM}lock -c 1D2021
${WM}lock -c 000000
elif [ "$res" == "↩ Logout" ]; then
# Prevent auto-login
rm /home/jpm/.config/last_login_gui

View File

@ -1,5 +1,10 @@
#!/usr/bin/env perl
# TODO: configure systemD logging
# TODO: refactor sloppy use of global variables
# TODO: clean up debugging output
# TODO: license, etc.
use strict;
use warnings;
use POSIX;
@ -29,8 +34,12 @@ are currently enabled will be set.\n
--daemon=N Configures the wallpaper to be periodically rotated for all
-d N of the given outputs. N indicates the number of seconds between
each rotation, if provided (default: 300).\n
--nocrop Don't crop a selection from the image. Instead, pass the whole
-n image to swaybg and let it handle the scaling\n
--help This menu
-h\n");
-h\n
You can send SIGUSR1 to force the daemon to reload immediately. Rotation timer
will be reset.\n");
exit(0);
}
@ -296,7 +305,6 @@ if ($settings{daemon}) {
#setpgrp;
#setsid;
umask 0;
# TODO: configure systemD logging
}
################################################################################
@ -331,4 +339,3 @@ if (scalar(@e)) {
}
exit(0);