Openbox

lxde + openbox

配置文件: ~/.config/openbox/lxde-rc.xml 例子:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<keyboard>
  <keybind key="W-Up">
    <action name="Togglemaximize"/>
  </keybind>
  <keybind key="W-Left">
    <action name="UnmaximizeFull"/>
    <action name="MoveResizeTo">
      <x>0</x>
      <y>0</y>
      <width>50%</width>
      <height>100%</height>
    </action>
  </keybind>

  <keybind key="W-Right">
    <action name="UnmaximizeFull"/>
    <action name="MoveResizeTo">
      <x>-0</x>
      <y>0</y>
      <width>50%</width>
      <height>100%</height>
    </action>
  </keybind>

  <keybind key="S-W-Right">
    <action name="MoveResizeTo">
      <!-- Move the window to the second monitor -->
      <monitor>2</monitor>
    </action>
  </keybind>

  <keybind key="S-W-Left">
    <action name="MoveResizeTo">
      <!-- Move the window to the second monitor -->
      <monitor>1</monitor>
    </action>
  </keybind>

</keyboard>