ランチャーの動作を変更したいので、Firefoxアイコンをクリックすると、コマンドが実行されます
$ optirun firefox
誰もそれを変更する方法を知っていますか?
ありがとうございました
ダッシュで変更すると、ランチャーで自動的に変更されます。ダッシュから「メインメニュー」(alacarte
)を起動し、インターネットに移動してからFirefoxに移動します。そこで、新しいRun-entryを設定できます(firefox %u
をoptirun firefox %u
に置き換えます-optirunが何であれ)。 Sudo vim /usr/share/applications/firefox.desktop
を使用してランチャーを手動で編集し、Exec
行を変更することもできます。
-まず、firefox.desktop
をホームにコピーします。
cp /usr/share/applications/firefox.desktop ~/.local/share/applications
存在しない場合は、上記の最後の場所に新しいものを作成します。
-次に編集用に開きます
gedit ~/.local/share/applications/firefox.desktop
-第三に、次のコードを追加します。
X-Ayatana-Desktop-Shortcuts=Optirun;NewWindow;
[Optirun Shortcut Group]
Name=Optirun Firefox
Exec=optirun firefox
TargetEnvironment=Unity
[NewWindow Shortcut Group]
Name=Open a New Window
Exec=firefox -new-window about:blank
TargetEnvironment=Unity
ファイルを保存し、~/.local/share/applications
を参照します。そこからfirefox.desktop
をランチャーにドラッグします。