LoginSignup
1
0

More than 5 years have passed since last update.

Lubuntu 14.04 で Alt+F2 のアレが起動しなくなった

Posted at

Lubuntu 14.04 を試していて,Alt+F1 でメニューは開くけど Alt+F2 でコマンドを実行するウィンドウが立ち上がらなくなりました.ランチャーとして普通に使えるのであれが使えなくなるのは痛い.なのでそれの修正方法です.

/usr/share/lubuntu/openbox/rc.xml<keybind key="A-F2"> というタグの中身が Alt+F2 のキーを入力したときに実行されるコマンドの内容になってます.ここが私の場合だと

<action name="Execute">
  <command>lxsession-default launcher_manager</command>
</action>

となっており,ターミナルで実際にこのコマンドを実行しても何も起こらないことが確認出来ました.なのでこの設定を自分で上書きしてやればいい感じがします.そのために ~/.config/openbox/lubuntu-rc.xml を編集すれば良いみたいです.ここの同じタグの内容の command タグを,

<action name="Execute">
  <command>lxpanelctl run</command>
</action>

と修正してやれば良いです.実際にこのコマンドをターミナルから実行するとプログラムを実行するウィンドウが起動します.

同ファイル内の

<keybind key="W-r">
...
</keybind>

の内容も同じように変更してやっても良いと思います.

References

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0