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
. 다른 터미널을 사용하는 경우 그에 따라 교체하십시오.