From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!.POSTED!not-for-mail From: Arkadiusz Drabczyk Newsgroups: gmane.emacs.help Subject: Re: Path of tool-bar icons Date: Wed, 11 Apr 2018 11:39:26 +0000 (UTC) Organization: Daddy, why doesn't this magnet pick up this floppy disk? Message-ID: References: NNTP-Posting-Host: blaine.gmane.org X-Trace: blaine.gmane.org 1523446819 23293 195.159.176.226 (11 Apr 2018 11:40:19 GMT) X-Complaints-To: usenet@blaine.gmane.org NNTP-Posting-Date: Wed, 11 Apr 2018 11:40:19 +0000 (UTC) User-Agent: slrn/1.0.2 (Linux) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Wed Apr 11 13:40:15 2018 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by blaine.gmane.org with esmtp (Exim 4.84_2) (envelope-from ) id 1f6E6o-0005zq-OQ for geh-help-gnu-emacs@m.gmane.org; Wed, 11 Apr 2018 13:40:14 +0200 Original-Received: from localhost ([::1]:48228 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1f6E8t-0007Ww-BL for geh-help-gnu-emacs@m.gmane.org; Wed, 11 Apr 2018 07:42:23 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:45585) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1f6E8M-0007WE-At for help-gnu-emacs@gnu.org; Wed, 11 Apr 2018 07:41:51 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1f6E8I-0001ce-Sn for help-gnu-emacs@gnu.org; Wed, 11 Apr 2018 07:41:50 -0400 Original-Received: from [195.159.176.226] (port=47076 helo=blaine.gmane.org) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1f6E8I-0001bI-Lj for help-gnu-emacs@gnu.org; Wed, 11 Apr 2018 07:41:46 -0400 Original-Received: from list by blaine.gmane.org with local (Exim 4.84_2) (envelope-from ) id 1f6E69-0005bD-PY for help-gnu-emacs@gnu.org; Wed, 11 Apr 2018 13:39:33 +0200 X-Injected-Via-Gmane: http://gmane.org/ Mail-Followup-To: help-gnu-emacs@gnu.org Original-Lines: 28 Original-X-Complaints-To: usenet@blaine.gmane.org Mail-Copies-To: nobody X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-Received-From: 195.159.176.226 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Original-Sender: "help-gnu-emacs" Xref: news.gmane.org gmane.emacs.help:116458 Archived-At: On 2018-04-11, Mick Bert wrote: > Hello > Working on a RHEL host machine, administrators installed emacs from a > subset of official repository (i don't know have many details about it), > version: > > GNU Emacs 24.3.1 (x86_64-redhat-linux-gnu, > GTK+ Version 3.22.10) of 2017-09-12 > on x86-017.build.eng.bos.redhat.com > > When I run it, it does not display any icon in the toolbar. Icons are at > path: > > /usr/share/emacs/24.3/etc/images > > How can I know where emacs is looking for icons You can use strace to check, example output: $ strace emacs |& grep access | grep /images faccessat(AT_FDCWD, "/usr/share/emacs/24.5/etc/images/new.xpm", R_OK) = 0 faccessat(AT_FDCWD, "/usr/share/emacs/24.5/etc/images/open.xpm", R_OK) = 0 faccessat(AT_FDCWD, "/usr/share/emacs/24.5/etc/images/diropen.xpm", R_OK) = 0 faccessat(AT_FDCWD, "/usr/share/emacs/24.5/etc/images/close.xpm", R_OK) = 0 faccessat(AT_FDCWD, "/usr/share/emacs/24.5/etc/images/save.xpm", R_OK) = 0 (...) -- Arkadiusz Drabczyk