web-dev-qa-db-ja.com

天気インジケーターをスタートアップアプリケーションに追加するにはどうすればよいですか?

スタートアップアプリケーションのリストで天気インジケーターを有効にしたにもかかわらず、起動時に決して起動しません。私はいつも手動でそれをしなければなりません。

入力したコマンドは次のとおりです。

my-weather-indicator 

私は何を間違えていますか?

1

調べる方法

Ppaからmy-weather-indicatorをインストールしました:ppa:atareao/atareaoを見つけます。 .desktop/usr/share/applicationsファイルには次の行が含まれます。

Exec=/opt/extras.ubuntu.com/my-weather-indicator/bin/my-weather-indicator

実行する必要があるコマンドは次のとおりです。

/opt/extras.ubuntu.com/my-weather-indicator/bin/my-weather-indicator

次のコマンドを実行すると、ファイルの内容を確認できます。

cat /usr/share/applications/extras-my-weather-indicator.desktop

または:

gedit /usr/share/applications/extras-my-weather-indicator.desktop

ランチャー(.desktopファイル)には、

スタートアップアプリケーションに追加するには

[ダッシュ]> [スタートアップアプリケーション]> [追加]を選択し、コマンドを追加します

/opt/extras.ubuntu.com/my-weather-indicator/bin/my-weather-indicator

詳しくは

試行したコマンドには、実行可能ファイルへのパスが含まれていません。

my-weather-indicator

これは、実行可能ファイルが $ PATH にある場合にのみ機能します。ただし、アプリケーションは次の場所にインストールされます。

/opt/extras.ubuntu.com/my-weather-indicator/bin

次のコマンドで、$PATHにあるディレクトリを確認できます。

echo $PATH
2
Jacob Vlijm

シンプルなGUIベースの答えは、

  • インジケーターを右クリックし、Preferencesを選択します
  • [設定]ウィンドウで[General optionsおよびAutostartオプションを確認します。
1
yottabytt