web-dev-qa-db-ja.com

自動起動する方法python UbuntuブートでGUIアプリケーション?

私はrc-localメソッドを試し、.desktopスクリプト、ubuntu自動起動アプリケーションを作成しましたが、どれも機能しませんでした。以下は、.desktopスクリプトファイルの内容です。

[Desktop Entry]
Encoding=UTF-8
Name=MyScript
Comment=MyScript
Icon=gnome-info
Exec=python3 /home/unity/Desktop/VISIONNUC/test_2.py
Terminal=False
Type=Application
Categories=

X-GNOME-Autostart-enabled=true
X-GNOME-Autostart-Delay=0
1
Sm Ashhar

アプリケーションを自動起動するには、そのバイナリパスをgnome-session-properties

端末で実行:

gnome-session-properties

既存のアイテムの場合と同様に、名前とコマンドを指定して新しいアイテムをリストに追加します。

あなたの場合、それは次のようになります:

enter image description here

使用する whereis python3へのフルパスを確認するにはpython3バイナリ。

ただし、起動時ではなく、ユーザーのログイン時に実行されます。

1
Gryu