Xfce Wiki

Sub domains
 

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revisionBoth sides next revision
apps:screensaver:faq [2018/11/23 08:00] – [Frequently Asked Questions] bluesabreapps:screensaver:faq [2018/11/25 16:24] bluesabre
Line 1: Line 1:
 ====== Xfce Screensaver FAQ ====== ====== Xfce Screensaver FAQ ======
 +
 +===== Why doesn't the screensaver/lock screen activate when I attempt to lock my computer?  =====
 +
 +You are likely running an unpatched xflock4, which does not know about xfce4-screensaver.\\
 +This has been [[https://git.xfce.org/xfce/xfce4-session/commit/?id=baf23e096da712084e54b47faa49c1ca99665b75|resolved upstream]], but will need to be manually added until the next Xfce Session release.
 +
 +All you need to do is add ''xfce4-screensaver-command --lock'' to the available lock commands.
 +<code>
 +$ cat /usr/bin/xflock4
 +
 +PATH=/bin:/usr/bin:/usr/local/bin
 +export PATH
 +
 +# Lock by xscreensaver or gnome-screensaver, if a respective daemon is running
 +for lock_cmd in \
 +    "xfce4-screensaver-command --lock" \
 +    "xscreensaver-command -lock" \
 +    "light-locker-command --lock" \
 +    "gnome-screensaver-command --lock"
 +do
 +    $lock_cmd >/dev/null 2>&1 && exit
 +done
 +
 +</code>
 +
  
 ===== Why doesn't my monitor turn off automatically? ===== ===== Why doesn't my monitor turn off automatically? =====