Compare commits

..

No commits in common. "a08cfa4d96f50aa0f193ba0af9692b91f289d5e6" and "3f54f5f4bcf21bc9c4b1a962e77be92268c8205f" have entirely different histories.

2 changed files with 4 additions and 11 deletions

View File

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

View File

@ -1,10 +1,5 @@
#!/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;
@ -34,12 +29,8 @@ 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
You can send SIGUSR1 to force the daemon to reload immediately. Rotation timer
will be reset.\n");
-h\n");
exit(0);
}
@ -305,6 +296,7 @@ if ($settings{daemon}) {
#setpgrp;
#setsid;
umask 0;
# TODO: configure systemD logging
}
################################################################################
@ -339,3 +331,4 @@ if (scalar(@e)) {
}
exit(0);