我们可以在 Linux 中启动应用程序之前自定义更改其名称吗?
假设标题栏显示应用程序名称为“Mozilla Firefox”,可以将其重命名为“浏览器”吗?
答案1
您可以将桌面快捷方式(例如/usr/share/applications/firefox-esr.desktop
)复制到您的$HOME/.local/share/applications/
文件夹,然后在那里进行编辑。
您还可以通过其他方式对其进行自定义;例如,您可以添加其他部分,例如[Desktop Action FOO]
右键单击启动器图标时可见的部分:
[Desktop Entry]
Name=Firefox ESR
Comment=Browse the World Wide Web
GenericName=Web Browser
Exec=/usr/lib/firefox-esr/firefox-esr %u
Type=Application
Icon=firefox-esr
Categories=Network;WebBrowser;
...
Actions=new-private-window;FOO;BAR
[Desktop Action new-private-window]
Name=Open a New Private Window
Exec=/usr/lib/firefox-esr/firefox-esr --private-window
StartupWMClass=Firefox-esr
StartupNotify=true
[Desktop Action FOO]
Name=Open profile FOO
Exec=/usr/lib/firefox-esr/firefox-esr -P FOO
[Desktop Action BAR]
Name=Open profile BAR
Exec=/usr/lib/firefox-esr/firefox-esr -P BAR