From mboxrd@z Thu Jan 1 00:00:00 1970 From: ludo@gnu.org (Ludovic =?UTF-8?Q?Court=C3=A8s?=) Subject: bug#23286: Unable to unlock xscreensaver in Xfce Date: Mon, 23 May 2016 10:11:27 +0200 Message-ID: <87bn3xkxcg.fsf@gnu.org> References: <570EB72F.9060101@fripost.org> <20160423095509.46afe0e7@scratchpost.org> <571BB528.7090801@fripost.org> <20160423202252.4802df28@scratchpost.org> <20160423202816.1412a0cc@scratchpost.org> <571BD7DB.7060606@fripost.org> <20160424031423.22ef23ad@scratchpost.org> <571CD23A.1070208@fripost.org> <20160426231752.5355f72b@scratchpost.org> <572CE293.5080400@fripost.org> <20160518204439.31571a4c@scratchpost.org> <573F461A.9010904@fripost.org> <20160520194849.4bae25b7@scratchpost.org> <20160520222201.7b52e715@fripost.org> <20160520202848.460abd5d@scratchpost.org> <20160520204209.75bbfb60@scratchpost.org> <20160521003629.0796482e@fripost.org> <20160521063749.4bfd1a4d@scratchpost.org> <20160521103559.4c4d11ff@fripost.org> <87zirhojkd.fsf@gnu.org> <20160522235645.6896525f@fripost.org> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:53574) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b4ky8-0004dS-4N for bug-guix@gnu.org; Mon, 23 May 2016 04:12:09 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1b4ky1-0007WS-RF for bug-guix@gnu.org; Mon, 23 May 2016 04:12:07 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:49288) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b4ky1-0007WO-O9 for bug-guix@gnu.org; Mon, 23 May 2016 04:12:01 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1b4ky1-0005BZ-Ku for bug-guix@gnu.org; Mon, 23 May 2016 04:12:01 -0400 Sender: "Debbugs-submit" Resent-Message-ID: In-Reply-To: <20160522235645.6896525f@fripost.org> (albin@fripost.org's message of "Sun, 22 May 2016 23:56:45 +0200") List-Id: Bug reports for GNU Guix List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-guix-bounces+gcggb-bug-guix=m.gmane.org@gnu.org Sender: "bug-Guix" To: Albin Cc: 23286@debbugs.gnu.org Albin skribis: > Den Sun, 22 May 2016 23:43:14 +0200 > skrev Re: bug#23286: Unable to unlock xscreensaver in Xfce: > >> Albin skribis: >>=20 >> > Den Sat, 21 May 2016 06:37:49 +0200=20=20 >>=20 >> [...] >>=20 >> >> Please try to call these manually (in that order) and stop at the >> >> first one that doesn't throw an error: >> >>=20 >> >> $ xscreensaver-command -lock=20=20 >> > >> > Unable to unlock. >> >=20=20 >> >> $ gnome-screensaver-command --lock=20=20 >> > >> > Command not found. >> >=20=20 >> >> $ xlock -mode blank=20=20 >> > >> > Worked. ('xlock' also worked.) >> >=20=20 >> >> $ slock=20=20 >> > >> > Worked.=20=20 >>=20 >> IIUC, xfce-lock uses one of the above lockers. For them to work, and >> if you want to be able to unlock your screen ;-), you need to make >> sure you use =E2=80=98screen-locker-service=E2=80=99 for each of them. >>=20 >> So: >>=20 >> (operating-system >> ;; =E2=80=A6 >> (services (cons (screen-locker-service xscreensaver) >> %desktop-services))) >>=20 > > This was my original configuration which didn't let me unlock if I had > locked with xflock4. Any other ideas? Oh wait; since the command is called =E2=80=9Cxscreensaver-command=E2=80=9D= , not =E2=80=9Cxscreensaver=E2=80=9D (well in fact there are both), this should b= e: (cons (screen-locker-service xscreensaver "xscreensaver-command") %desktop-services) Could you try this one? Thanks for your patience. :-) Ludo=E2=80=99.