Recuperando o comando usado por um ícone do lançador [duplicado]

0

Como faço para rastrear o comando exato executado pelo launcher de unidade para um determinado ícone de iniciador? Em 14.04, pelo menos, passar o mouse (ou clicar com o botão direito do mouse) em um ícone na barra de ativação não fornece nenhuma opção para chegar a essa informação.

    
por matt 14.12.2015 / 20:57

1 resposta

1

Você precisa procurar o arquivo da área de trabalho em ~/.local/share/applications/ e / ou /usr/share/applications/ , abri-lo e depois procurar a parte Exec= .

Por exemplo, se você quiser saber o comando que inicia o gedit

$ cat /usr/share/applications/gedit.desktop 
[Desktop Entry]
Name=gedit
GenericName=Text Editor
Comment=Edit text files
Exec=gedit %U
Terminal=false
Type=Application
StartupNotify=true
MimeType=text/plain;
Icon=accessories-text-editor
Categories=GNOME;GTK;Utility;TextEditor;
X-GNOME-DocPath=gedit/gedit.xml
X-GNOME-FullName=Text Editor
X-GNOME-Bugzilla-Bugzilla=GNOME
X-GNOME-Bugzilla-Product=gedit
X-GNOME-Bugzilla-Component=general
X-GNOME-Bugzilla-Version=3.10.4
X-GNOME-Bugzilla-ExtraInfoScript=/usr/share/gedit/gedit-bugreport
Actions=Window;Document;
Keywords=Text;Editor;Plaintext;Write;
X-Ubuntu-Gettext-Domain=gedit

[Desktop Action Window]
Name=Open a New Window
Exec=gedit --new-window
OnlyShowIn=Unity;

[Desktop Action Document]
Name=Open a New Document
Exec=gedit --new-document
OnlyShowIn=Unity;

Você está interessado em Exec=gedit %U

    
por dadexix86 14.12.2015 / 21:05