Conky는 Fedora 28에서 자동으로 시작됩니다.

Conky는 Fedora 28에서 자동으로 시작됩니다.

conky이것은 반복되는 문제이지만 GNOME 3 부팅 시 프로그램( )이 자동으로 시작되도록 할 수 없습니다 . ~/.config/autostart다음 파일이 있습니다 .

cat ~/.config/autostart/conky.desktop
[Desktop Entry]
Type=Application
Encoding=UTF-8
Name=conky
Comment=A startup script for conky
Exec=~/bin/conky_startup
Terminal=true

~/bin/conky_startup다음과 같이:

cat ~/bin/conky_startup

#!/usr/bin/env bash

/usr/bin/conky --pause 10 -c ~/conky/white_conky &

conky를 실행하면 ~/bin/conky_startup아무 문제 없이 시작됩니다. 그러나 시작 시 스크립트가 conky를 실행하지 못합니다. 왜?

답변1

나는 일을 찾았어요해결책.

[Desktop Entry]
Name=Conky
GenericName=background monitor
Comment=Keep a background eye on your system
Exec=conky &
Terminal=false
Type=Application
Icon=conky
Categories=System;
StartupNotify=false
Name[en_US]=conky

관련 정보