- 1<?xml version="1.0" encoding="UTF-8"?>
- 2
- 3<openbox_config xmlns="http://openbox.org/3.4/rc"
- 4 xmlns:xi="http://www.w3.org/2001/XInclude">
- 5
- 6 <!--
- 7 Openbox configuration file
- 8 Basic setup with keybindings for a minimal environment
- 9 -->
- 10
- 11 <resistance>
- 12 <strength>10</strength>
- 13 <screen_edge_strength>20</screen_edge_strength>
- 14 </resistance>
- 15
- 16 <focus>
- 17 <focusNew>yes</focusNew>
- 18 <followMouse>no</followMouse>
- 19 <focusLast>yes</focusLast>
- 20 <underMouse>no</underMouse>
- 21 <focusDelay>200</focusDelay>
- 22 </focus>
- 23
- 24 <placement>
- 25 <policy>Smart</policy>
- 26 </placement>
- 27
- 28 <theme>
- 29 <name>Clearlooks</name>
- 30 <titleLayout>NLIMC</titleLayout>
- 31 <keepBorder>yes</keepBorder>
- 32 <animateIconify>yes</animateIconify>
- 33 </theme>
- 34
- 35 <desktops>
- 36 <number>4</number>
- 37 <firstdesk>1</firstdesk>
- 38 <names>
- 39 <name>Desktop 1</name>
- 40 <name>Desktop 2</name>
- 41 <name>Desktop 3</name>
- 42 <name>Desktop 4</name>
- 43 </names>
- 44 <popupTime>875</popupTime>
- 45 </desktops>
- 46
- 47 <resize>
- 48 <drawContents>yes</drawContents>
- 49 <popupShow>NonPixel</popupShow>
- 50 <popupPosition>Center</popupPosition>
- 51 <popupFixedPosition>Center</popupFixedPosition>
- 52 </resize>
- 53
- 54 <dock>
- 55 <position>Bottom</position>
- 56 <stacking>Above</stacking>
- 57 <direction>Horizontal</direction>
- 58 <autoHide>no</autoHide>
- 59 <hideDelay>300</hideDelay>
- 60 <showDelay>300</showDelay>
- 61 </dock>
- 62
- 63 <keyboard>
- 64 <!-- Launch Terminator -->
- 65 <keybind key="A-Return">
- 66 <action name="Execute">
- 67 <command>terminator</command>
- 68 </action>
- 69 </keybind>
- 70
- 71 <!-- Launch dmenu -->
- 72 <keybind key="W-space">
- 73 <action name="Execute">
- 74 <command>dmenu_run</command>
- 75 </action>
- 76 </keybind>
- 77
- 78 <!-- Close window -->
- 79 <keybind key="A-F4">
- 80 <action name="Close"/>
- 81 </keybind>
- 82
- 83 <!-- Switch windows -->
- 84 <keybind key="A-Tab">
- 85 <action name="NextWindow"/>
- 86 </keybind>
- 87 <keybind key="A-S-Tab">
- 88 <action name="PreviousWindow"/>
- 89 </keybind>
- 90
- 91 <!-- Move between desktops -->
- 92 <keybind key="W-Left">
- 93 <action name="GoToDesktop"><to>previous</to></action>
- 94 </keybind>
- 95 <keybind key="W-Right">
- 96 <action name="GoToDesktop"><to>next</to></action>
- 97 </keybind>
- 98
- 99 <!-- Move window to another desktop -->
- 100 <keybind key="W-S-Left">
- 101 <action name="SendToDesktop"><to>previous</to></action>
- 102 </keybind>
- 103 <keybind key="W-S-Right">
- 104 <action name="SendToDesktop"><to>next</to></action>
- 105 </keybind>
- 106
- 107 <!-- Reload Openbox -->
- 108 <keybind key="W-r">
- 109 <action name="Reconfigure"/>
- 110 </keybind>
- 111
- 112 <!-- Restart Openbox -->
- 113 <keybind key="W-C-r">
- 114 <action name="Restart"/>
- 115 </keybind>
- 116
- 117 <!-- Logout menu -->
- 118 <keybind key="W-Delete">
- 119 <action name="Exit"/>
- 120 </keybind>
- 121 </keyboard>
- 122
- 123 <mouse>
- 124 <dragThreshold>1</dragThreshold>
- 125 <doubleClickTime>200</doubleClickTime>
- 126 <screenEdgeWarpTime>400</screenEdgeWarpTime>
- 127 <screenEdgeWarpMouse>false</screenEdgeWarpMouse>
- 128 </mouse>
- 129
- 130 <menu>
- 131 <file>menu.xml</file>
- 132 <hideDelay>200</hideDelay>
- 133 <middle>no</middle>
- 134 <submenuShowDelay>100</submenuShowDelay>
- 135 <submenuHideDelay>400</submenuHideDelay>
- 136 <showIcons>yes</showIcons>
- 137 </menu>
- 138
- 139 <applications>
- 140 </applications>
- 141</openbox_config>
Raw Paste