如何编写一个应用程序启动器来在自定义工作目录中启动 Atom?

如何编写一个应用程序启动器来在自定义工作目录中启动 Atom?

我正在维护一个 Jekyll 支持的博客,在我的本地计算机上,它的 git 存储库位于 以便/home/fusion809/GitHub/fusion809.github.io在 Atom 中编辑它,我创建了这个应用程序启动器(保存在/home/fusion809/.local/share/applications/edblog.desktop):

[Desktop Entry]
Version=1.0
Name=edblog
GenericName=edblog
Type=Application;
Categories=TextEditor;Atom
Exec=atom ~/GitHub/fusion809.github.io
TryExec=/usr/bin/atom ~/GitHub/fusion809.github.io
Icon=atom.png

由于一个我无法理解的原因,每当我edblog.desktop双击它运行时,我都会收到一条错误消息:

Failed to execute file "edblog":
Invalid desktop file

我尝试用 代替~$HOME/home/fusion809没有效果。

相关内容