4
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

LXDEのショートカットによるWindows操作

Last updated at Posted at 2015-07-18

はじめに

 古くて壊れそうなデスクトップ使っているものですから、いつもLXDEになってしまいます。LDXEは、標準ではショートカットが少ないので、lxde-rc.xmlへ追加する必要があります。今まで、Windows操作のショートカットを追加してなくて、もやもやしていました。今回は次の操作を追加してみました。
 最大、最大解除、右側脇移動、左側脇移動、左半分のサイズ変更のウィンドウズ操作ショートカットです。サイズ変更は数値で入れていますので、変更の必要があると思います。

リンク

詳しくは、次のリンクにあります。
Help:Actions - Openbox
http://openbox.org/wiki/Help:Actions

追加分

lxde-rc.xmlの追加分 Keybindのセクションに追加してください。

/home/あなたの場所/.config/openbox/lxde-rc.xml

    <keybind key="C-A-1">
        <action name="Maximize"/>
    </keybind>

    <keybind key="C-A-2">
        <action name="Unmaximize"/>
    </keybind>

    <keybind key="C-A-3">
        <action name="MoveToEdge"><direction>west</direction></action>
    </keybind>

    <keybind key="C-A-4">
        <action name="MoveToEdge"><direction>east</direction></action>
    </keybind>

    <keybind key="C-A-5">
        <action name="MoveResizeTo">
        <!-- adjust a window's height -->
            <width client="yes">1/2</width>
            <height>750</height>
            <x>-0</x>
            <y>-0</y>
        </action>
    </keybind> 
4
5
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
4
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?