From owner-freebsd-questions@freebsd.org Wed Jan 18 22:31:44 2017 Return-Path: Delivered-To: freebsd-questions@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7661ECB6A16 for ; Wed, 18 Jan 2017 22:31:44 +0000 (UTC) (envelope-from dpchrist@holgerdanske.com) Received: from holgerdanske.com (holgerdanske.com [184.105.128.27]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "*.he.net", Issuer "GeoTrust SSL CA - G4" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 641D916AD for ; Wed, 18 Jan 2017 22:31:43 +0000 (UTC) (envelope-from dpchrist@holgerdanske.com) Received: from ::ffff:99.100.19.101 ([99.100.19.101]) by holgerdanske.com with ESMTPSA (AES128-SHA:SSLv3:Kx=RSA:Au=RSA:Enc=AES(128):Mac=SHA1) (SMTP-AUTH username dpchrist@holgerdanske.com, mechanism PLAIN) for ; Wed, 18 Jan 2017 14:31:37 -0800 Subject: Re: Second attempt at FreeBSD-11.0-RELEASE-i386, Xorg, and Xfce graphical desktop To: freebsd-questions@freebsd.org References: <18a5de5c-bc3a-c2e8-32c1-ea0a12d446ac@holgerdanske.com> <20170116230336.2cc22d94@riseup.net> <45c5ea44-e0b4-2698-da8e-707c507eb086@holgerdanske.com> <20170117032253.13a3587f@riseup.net> <20170118051205.f9fd373e.freebsd@edvax.de> From: David Christensen Message-ID: Date: Wed, 18 Jan 2017 14:31:36 -0800 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Icedove/45.6.0 MIME-Version: 1.0 In-Reply-To: <20170118051205.f9fd373e.freebsd@edvax.de> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Jan 2017 22:31:44 -0000 On 01/17/17 20:12, Polytropon wrote: > On Tue, 17 Jan 2017 13:03:26 -0800, David Christensen wrote: >> Where can I find information for setting up a GPG agent for XFCE on >> FreeBSD 11.0? > Probably you'll find that in the Xfce documentation (which > might be primarily targeted at Linux, but you can "translate" > the stuff anyway). STFW yielded the answer: http://dst.lbl.gov/ksblog/2011/05/xfce-without-gpg-agent/ Running Application Menu -> Settings -> Settings Editor: Click New button: Property /startup/ssh-agent/enabled Type: Boolean Value: TRUE Save Click New button: Property: /startup/ssh-agent/type Type: String Value: ssh-agent Save I also fixed another warning: xauth: file /home/dpchrist/.serverauth.1036 does not exist /usr/local/bin/startx calls xauth on line 182-184, and xauth issues the warning: 182 xauth -q -f "$xserverauthfile" << EOF 183 add :$dummy . $mcookie 184 EOF STFW yielded a suggestion: http://www.linuxquestions.org/questions/slackware-14/xauth-file-home-semoi-serverauth-2263-does-not-exist-4175446072/ Hacking startx: toor@freebsd:/usr/local/bin # diff startx-20170111-1934-orig startx 182c182 < xauth -q -f "$xserverauthfile" << EOF --- > touch $xserverauthfile; xauth -q -f "$xserverauthfile" << EOF Now I'm trying to get Panel -> Action Buttons -> Lock Screen working. David