修改默认打开程序
多种方法:
1.使用系统Details程序修改( System > Details > Default Applications),仅可以修改少数程序:
2.添加应用程序到Application list,并通过Nautilus的open with 方法修改打开程序。(下文介绍)
3.修改文件MIME文件替换自己的指定的程序为默认程序。
添加新应用程序到GUI Application list及Nautilus文件管理器的open with 程序列表:
添加新程序到GUI的application list和open with list需要如下两个步骤,缺一不可:
1.需要在如下指定路径下有对应<程序名>.desktop文件存在:
/usr/share/applications/<filename>.desktop 系统全局路径
~/.local/share/applications/<filename>.desktop 个人用户路径
.desktop文件又称为Desktop_entry,是当前最主要的GUI环境下启动程序的方式。其是freedesktop.org标准化的在Xorg下执行程序的方法,文件指定了程序的执行方式,以及在目录下的icon图标。目前有三类.desktop文件:
Application :a shortcut to an application
Link :a shortcut to a web link.
Directory :a container of meta data of a menu entry
参考文档ArchLinux Wiki Desktop_entries:https://wiki.archlinux.org/index.php/Desktop_entries
2.文件内容中Exec 条目结尾需要增加 %f符号,将打开的文件传递给启动程序
ray@ray-ThinkPad-X250:~/.local/share/applications$ cat yEd.desktop
#!/usr/bin/env xdg-open
[Desktop Entry]
Type=Application
Name=yEd Graph Editor
Exec=/bin/sh "/home/ray/Applications/yEd/yEd" %f
Icon=/home/ray/Applications/yEd/.install4j/yEd.png
Categories=Application;
ray@ray-ThinkPad-X250:~/.local/share/applications$
%f符号含义参考文档Desktop Entry Specification:https://developer.gnome.org/desktop-entry-spec/#exec-variables