diff options
author | Denis Dupeyron <calchan@gentoo.org> | 2016-02-02 11:36:28 -0700 |
---|---|---|
committer | Denis Dupeyron <calchan@gentoo.org> | 2016-02-02 11:43:22 -0700 |
commit | 4045336f08c2902791659d44a87312be39165373 (patch) | |
tree | fb4d541e4dd0cb0c8e09a5fe1df88fc19b9bc38e /xfce-base/xfce4-session/files | |
parent | qt5-build.eclass: make gcc version check fatal starting with Qt 5.6 (diff) | |
download | gentoo-4045336f08c2902791659d44a87312be39165373.tar.gz gentoo-4045336f08c2902791659d44a87312be39165373.tar.bz2 gentoo-4045336f08c2902791659d44a87312be39165373.zip |
xfce-base/xfce4-session: screensaver fixes
Add x11-misc/light-locker as one of the possible backends for locking
the screen. Add the corresponding command to the xflock4 script.
Remove gnome-extra/gnome-screensaver as one of the possible backends for
locking the screen. This silences repoman. Gnome 3 does not use it and
Gnome 2 no longer exists in portage, thus the package has disappeared.
Leave the corresponding command in the xflock4 script just in case some
of our users are still using gnome-screensaver from an overlay.
Diffstat (limited to 'xfce-base/xfce4-session/files')
-rw-r--r-- | xfce-base/xfce4-session/files/xfce4-session-4.12.1-light-locker_support_to_xflock4.patch | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/xfce-base/xfce4-session/files/xfce4-session-4.12.1-light-locker_support_to_xflock4.patch b/xfce-base/xfce4-session/files/xfce4-session-4.12.1-light-locker_support_to_xflock4.patch new file mode 100644 index 000000000000..cb472edfe5de --- /dev/null +++ b/xfce-base/xfce4-session/files/xfce4-session-4.12.1-light-locker_support_to_xflock4.patch @@ -0,0 +1,17 @@ +--- scripts/xflock4.orig 2016-02-02 10:40:15.726495183 -0700 ++++ scripts/xflock4 2016-02-02 10:43:17.548061336 -0700 +@@ -24,10 +24,12 @@ + PATH=/bin:/usr/bin + export PATH + +-# Lock by xscreensaver or gnome-screensaver, if a respective daemon is running ++# Lock by xscreensaver, gnome-screensaver or light-locker, if a respective ++# daemon is running + for lock_cmd in \ + "xscreensaver-command -lock" \ +- "gnome-screensaver-command --lock" ++ "gnome-screensaver-command --lock" \ ++ "light-locker-command --lock" + do + $lock_cmd >/dev/null 2>&1 && exit + done |