From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ricardo Wurmus Subject: bug#23200: XFCE: selecting a style has no effect Date: Sun, 03 Apr 2016 08:51:34 +0200 Message-ID: <87vb3zyykp.fsf@elephly.net> References: <87oa9r65w6.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:33957) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ambtF-0000hO-Ps for bug-guix@gnu.org; Sun, 03 Apr 2016 02:52:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ambtC-0004rU-Jl for bug-guix@gnu.org; Sun, 03 Apr 2016 02:52:05 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:52241) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ambtC-0004rQ-GG for bug-guix@gnu.org; Sun, 03 Apr 2016 02:52:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1ambtC-00022d-9G for bug-guix@gnu.org; Sun, 03 Apr 2016 02:52:02 -0400 Sender: "Debbugs-submit" Resent-Message-ID: In-reply-to: <87oa9r65w6.fsf@gmail.com> 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-bounces+gcggb-bug-guix=m.gmane.org@gnu.org To: Chris Marusich Cc: 23200@debbugs.gnu.org Chris Marusich writes: > I've noticed surprising behavior on a fresh install of GuixSD v0.10.0 > when using XFCE. In XFCE, in the "Appearance" section of the settings, > under the "Style" tab, if you select an alternate style (e.g., > "Xfce-kolors"), the color scheme does not actually get updated. I > expected the colors of the windows to change, but they did not. > > Is this expected? Perhaps I'm missing something that needs to be done > to apply the change, but it seems like it just isn't working. Here’s what worked for me: * install gnome-themes-standard into the system profile * set GTK_DATA_PREFIX to “/run/current-system/profile” The problem here is that GTK_DATA_PREFIX is not a list of directories in which GTK+ should look for themes; it is just a single directory. We need to patch GTK+ to search through a list of directories instead. ~~ Ricardo