From mboxrd@z Thu Jan 1 00:00:00 1970 From: HiPhish Subject: Guix and $XDG_DATA_DIRS Date: Thu, 11 Apr 2019 19:06:03 +0200 Message-ID: <4716913.Tid4HlZl5B@aleksandar-ixtreme-m5740> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7Bit Return-path: Received: from eggs.gnu.org ([209.51.188.92]:45555) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hEd9X-0006vP-Kr for help-guix@gnu.org; Thu, 11 Apr 2019 13:06:20 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hEd9W-0001Xg-Ax for help-guix@gnu.org; Thu, 11 Apr 2019 13:06:19 -0400 Received: from mout02.posteo.de ([185.67.36.66]:59557) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hEd9V-0001Sj-Ik for help-guix@gnu.org; Thu, 11 Apr 2019 13:06:18 -0400 Received: from submission (posteo.de [89.146.220.130]) by mout02.posteo.de (Postfix) with ESMTPS id 9F09C2400FD for ; Thu, 11 Apr 2019 19:06:08 +0200 (CEST) Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 44g6qf1WTvz9rxS for ; Thu, 11 Apr 2019 19:06:05 +0200 (CEST) List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-guix-bounces+gcggh-help-guix=m.gmane.org@gnu.org Sender: "Help-Guix" To: help-guix@gnu.org Hello everyone, I noticed that when I use Guix to install an application that has a desktop entry, such as Gimp, Inkscape or Krita, that application does not show up in my applications menu (using KDE on Kubuntu). After some digging I have found that the environment variable $XDG_DATA_DIRS is responsible for this. >From what I understand, Guix should set all the necessary environment variables by modifying the file $GUIX_PROFILE/etc/profile, which I then need to source in my .profile file. Here are its contents: export PATH="${GUIX_PROFILE:-/gnu/store/83b17pr7rdyng48443iqn0f1z18dkpzk- profile}/bin${PATH:+:}$PATH" export GUILE_LOAD_PATH="${GUIX_PROFILE:-/gnu/store/ 83b17pr7rdyng48443iqn0f1z18dkpzk-profile}/share/guile/site/2.2$ {GUILE_LOAD_PATH:+:}$GUILE_LOAD_PATH" export GUILE_LOAD_COMPILED_PATH="${GUIX_PROFILE:-/gnu/store/ 83b17pr7rdyng48443iqn0f1z18dkpzk-profile}/lib/guile/2.2/site-ccache$ {GUILE_LOAD_COMPILED_PATH:+:}$GUILE_LOAD_COMPILED_PATH" As you can see, $XDG_DATA_DIRS is not being modified. I have added the following line to my .profile file: export XDG_DATA_DIRS="$GUIX_PROFILE/share/":$XDG_DATA_DIRS Now all the applications do show up in my menu after a reboot. Is this an oversight or am I supposed to set that variable myself? And if it is the latter, where is the best place to set that variable so it picks it up when I install a new application without rebooting?