summaryrefslogtreecommitdiff
path: root/scripts/xscreensaver-dbus
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/xscreensaver-dbus')
-rwxr-xr-xscripts/xscreensaver-dbus59
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