已安装的应用程序不断消失 - Notion/Lotion

已安装的应用程序不断消失 - Notion/Lotion

我从这里安装了 Lotion/Notion:https://github.com/puneetsl/lotion

通过运行 ./install

它运行正常。但每当我重新启动 PC 时,该应用程序就会从我的应用程序中心消失。

今天我启动了我的 PC 并安装了 XDM 下载管理器,安装完成后,Lotion 神奇地回到了我的收藏夹栏。

这是为什么?

如何修复?

答案1

我假设您正在使用 GNome。

如果您报告该应用程序从您的“收藏夹”栏中消失,这可能是因为该项目未添加到 gnome 收藏夹栏中。

步骤1 : 确保创建具有适当 exe / icon 的 .desktop 文件:

 
[ECLIPSE]
Name=Eclipse
Exec=/absolute/path/of/executable
StartupNotify=true
Terminal=false
Type=Application
Icon=/absolute/path/of/png

第2步 :您可以使用它来获取当前列表:gsettings get org.gnome.shell favorite-apps

步骤3:根据您的需要,将桌面文件复制到 /usr/share/applications/(如果您需要其他用户可以使用)或 ~/.local/share/applications(如果您只需要您的用户可以使用)。

步骤4 :获取当前最喜欢的应用程序:

gsettings get org.gnome.shell favorite-apps

步骤5:将新应用添加到收藏应用列表。以下是示例:

 gsettings set org.gnome.shell favorite-apps "['firefox.desktop', 'Terminal.desktop', 'Eclipse.desktop', 'EMACS.desktop']"

相关内容