diff options
author | dakkar <dakkar@thenautilus.net> | 2021-05-01 11:18:46 +0100 |
---|---|---|
committer | dakkar <dakkar@thenautilus.net> | 2021-05-01 11:18:46 +0100 |
commit | 150599760bba4918ddfcec5da1db27dea3d63cb9 (patch) | |
tree | 8ce21b2efd3b3212818e09124cf1d7ec53d9782b /scripts | |
parent | v1.0.0 (diff) | |
download | xscreensaver-dbus-98b39654e20c14d5dddeb0dde3ad99a0b4c8bc84.tar.gz xscreensaver-dbus-98b39654e20c14d5dddeb0dde3ad99a0b4c8bc84.tar.bz2 xscreensaver-dbus-98b39654e20c14d5dddeb0dde3ad99a0b4c8bc84.zip |
Dzil-build release 1.0.0 (from 6bba3a8 on master)v1.0.0
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/xscreensaver-dbus | 59 |
1 files changed, 52 insertions, 7 deletions
diff --git a/scripts/xscreensaver-dbus b/scripts/xscreensaver-dbus index a48334c..e48cc92 100755 --- a/scripts/xscreensaver-dbus +++ b/scripts/xscreensaver-dbus @@ -4,13 +4,27 @@ use warnings; use v5.20; use Log::Any::Adapter Stdout => ( log_level => 'debug' ); use App::XScreenSaver::DBus; -# VERSION +our $VERSION = '1.0.0'; # VERSION # PODNAME: xscreensaver-dbus # ABSTRACT: tie xscreensaver into dbus $|++; App::XScreenSaver::DBus->new->run; +__END__ + +=pod + +=encoding UTF-8 + +=head1 NAME + +xscreensaver-dbus - tie xscreensaver into dbus + +=head1 VERSION + +version 1.0.0 + =head1 SYNOPSIS xscreensaver & @@ -46,9 +60,40 @@ So I wrote this. =head1 REFERENCES -=for :list -* Martin Lucina F<xscreensaver-systemd> https://github.com/mato/xscreensaver-systemd -* the Debian bug where the above program is first mentioned https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=781961 -* "Is there a decent way to inhibit screensavers in linux?" on StackOverflow https://stackoverflow.com/questions/460140/is-there-a-decent-way-to-inhibit-screensavers-in-linux -* the systemd "Inhibitor Locks" documentation https://www.freedesktop.org/wiki/Software/systemd/inhibit/ -* the "idle inhibition" spec https://people.freedesktop.org/~hadess/idle-inhibition-spec/index.html +=over 4 + +=item * + +Martin Lucina F<xscreensaver-systemd> https://github.com/mato/xscreensaver-systemd + +=item * + +the Debian bug where the above program is first mentioned https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=781961 + +=item * + +"Is there a decent way to inhibit screensavers in linux?" on StackOverflow https://stackoverflow.com/questions/460140/is-there-a-decent-way-to-inhibit-screensavers-in-linux + +=item * + +the systemd "Inhibitor Locks" documentation https://www.freedesktop.org/wiki/Software/systemd/inhibit/ + +=item * + +the "idle inhibition" spec https://people.freedesktop.org/~hadess/idle-inhibition-spec/index.html + +=back + +=head1 AUTHOR + +Gianni Ceccarelli <dakkar@thenautilus.net> + +=head1 COPYRIGHT AND LICENSE + +This software is Copyright (c) 2021 by Gianni Ceccarelli <dakkar@thenautilus.net>. + +This is free software, licensed under: + + The GNU Affero General Public License, Version 3, November 2007 + +=cut |