Editor de texto instalado via deb, mas não mostrado no menu “abrir com”

0

Eu fiz o deb installer. Editor de texto ok instalado. Tem categoria "editores" no arquivo deb. Por que não é mostrado no menu "Abrir com" (Ubuntu 14.04)? mesmo em outras aplicações.

Talvez consertar meu arquivo deb? (Eu não posso mostrá-lo, beta).

    
por RProgram 15.08.2015 / 14:56

1 resposta

1

Para mostrar uma entrada em aberta com , você precisa de um arquivo desktop . No seu caso em /usr/share/applications .

E você precisa de um %f ou %F no final do comando para Exec=

Exec variables
Add...  Accepts...
%f      a single filename.
%F      multiple filenames.
%u      a single URL.
%U      multiple URLs.
%d      a single directory. Used in conjunction with %f to locate a file.
%D      multiple directories. Used in conjunction with %F to locate files.
%n      a single filename without a path.
%N      multiple filenames without paths.
%k      a URI or local filename of the location of the desktop file.
%v      the name of the Device entry.

E.G.

[Desktop Entry]
Name=myeditor
GenericName=Text Editor
Comment=Edit text files
Exec=myeditor %F
Terminal=false
Type=Application
StartupNotify=true
MimeType=text/plain;
Icon=accessories-text-editor
Categories=Utility;TextEditor;
    
por A.B. 15.08.2015 / 15:28