为什么这个 .desktop 文件在启动时不运行?

为什么这个 .desktop 文件在启动时不运行?

我正在尝试让sensors命令在 Linux Mint 18.2 设置启动时在控制台中运行。我已将以下sensors.desktop文件放入我的登录用户.config/autostart目录中:

[Desktop Entry]
Name=Monitor sensors
Comment=Monitor temperature sensors
Exec=watch -d sensors
Icon=utilities-system-monitor
Terminal=true
Type=Application
StartupNotify=true
Categories=GNOME;GTK;System;Monitor;
NotShowIn=KDE;
NoDisplay=false
Hidden=false
X-GNOME-Autostart-Delay=0

.desktop那里有另一个在启动时运行的文件,如果我从文件资源管理器中双击它,这个文件就会运行,那么为什么它不在启动时运行呢?

答案1

解决了问题。将内容改为sensor.desktop这样

[Desktop Entry]
Name=Monitor sensors
Comment=Monitor temperature sensors
Exec=gnome-terminal -e 'watch -d sensors'
Icon=utilities-system-monitor
Type=Application
Categories=GNOME;GTK;Monitor;
NotShowIn=KDE;
NoDisplay=false
Hidden=false
X-GNOME-Autostart-Delay=0

确保您已经gnome-terminal安装。如果您使用其他终端而不是相应地替换它。

相关内容