From mboxrd@z Thu Jan 1 00:00:00 1970 From: Fabian Harfert Subject: [PATCH] system: Define 'GTK_DATA_PREFIX' in /etc/profile. Date: Mon, 8 Feb 2016 17:07:38 +0100 Message-ID: <1454947658-1628-1-git-send-email-fhmgufs@web.de> References: 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]:54910) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aSoLq-0008S8-3P for guix-devel@gnu.org; Mon, 08 Feb 2016 11:07:49 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aSoLl-0000HD-W6 for guix-devel@gnu.org; Mon, 08 Feb 2016 11:07:46 -0500 Received: from mout.web.de ([212.227.17.11]:63908) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aSoLl-0000H6-N4 for guix-devel@gnu.org; Mon, 08 Feb 2016 11:07:41 -0500 In-Reply-To: List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: guix-devel@gnu.org * gnu/system.scm (operating-system-etc-service)[profile]: Add 'GTK_DATA_PREFIX' definition. --- gnu/system.scm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/gnu/system.scm b/gnu/system.scm index ff3a400..81c38e7 100644 --- a/gnu/system.scm +++ b/gnu/system.scm @@ -2,6 +2,7 @@ ;;; Copyright © 2013, 2014, 2015, 2016 Ludovic Courtès ;;; Copyright © 2015 Mark H Weaver ;;; Copyright © 2015 Alex Kost +;;; Copyright © 2016 Fabian Harfert ;;; ;;; This file is part of GNU Guix. ;;; @@ -479,6 +480,9 @@ fi # Allow GStreamer-based applications to find plugins. export GST_PLUGIN_PATH=\"$HOME/.guix-profile/lib/gstreamer-1.0\" +# Allow Gtk+ to find themes +export GTK_DATA_PREFIX=\"$HOME/.guix-profile\" + if [ -n \"$BASH_VERSION\" -a -f /etc/bashrc ] then # Load Bash-specific initialization code. -- 2.7.0