Linux

如何在 .desktop 文件中傳遞參數

  • October 25, 2015

通過命令行啟動應用程序時,我成功使用:

gourmet --gourmet-directory $HOME/my/custom/path/

但是當嘗試在 .desktop 文件上複製此行為時,它不起作用:

Exec=gourmet --gourmet-directory $HOME/my/custom/path/ %F 

我可能在這裡遺漏了一些非常基本的東西,但我無法理解這一點。任何幫助將非常感激。

Exec 欄位中只能使用帶有一個連字元的命令行選項。

Exec=sh -c "gourmet --gourmet-directory $HOME/my/custom/path/ %F"

應該管用。

引用自:https://unix.stackexchange.com/questions/238565