rc.xml 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!-- Do not edit this file, it will be overwritten on install.
  3. Copy the file to $HOME/.config/openbox/ instead. -->
  4. <openbox_config xmlns="http://openbox.org/3.4/rc" xmlns:xi="http://www.w3.org/2001/XInclude">
  5. <resistance>
  6. <strength>10</strength>
  7. <screen_edge_strength>20</screen_edge_strength>
  8. </resistance>
  9. <focus>
  10. <focusNew>yes</focusNew>
  11. <!-- always try to focus new windows when they appear. other rules do
  12. apply -->
  13. <followMouse>yes</followMouse>
  14. <!-- move focus to a window when you move the mouse into it -->
  15. <focusLast>yes</focusLast>
  16. <!-- focus the last used window when changing desktops, instead of the one
  17. under the mouse pointer. when followMouse is enabled -->
  18. <underMouse>no</underMouse>
  19. <!-- move focus under the mouse, even when the mouse is not moving -->
  20. <focusDelay>200</focusDelay>
  21. <!-- when followMouse is enabled, the mouse must be inside the window for
  22. this many milliseconds (1000 = 1 sec) before moving focus to it -->
  23. <raiseOnFocus>no</raiseOnFocus>
  24. <!-- when followMouse is enabled, and a window is given focus by moving the
  25. mouse into it, also raise the window -->
  26. </focus>
  27. <placement>
  28. <policy>Smart</policy>
  29. <!-- 'Smart' or 'UnderMouse' -->
  30. <center>yes</center>
  31. <!-- whether to place windows in the center of the free area found or
  32. the top left corner -->
  33. <monitor>Primary</monitor>
  34. <!-- with Smart placement on a multi-monitor system, try to place new windows
  35. on: 'Any' - any monitor, 'Mouse' - where the mouse is, 'Active' - where
  36. the active window is, 'Primary' - only on the primary monitor -->
  37. <primaryMonitor>1</primaryMonitor>
  38. <!-- The monitor where Openbox should place popup dialogs such as the
  39. focus cycling popup, or the desktop switch popup. It can be an index
  40. from 1, specifying a particular monitor. Or it can be one of the
  41. following: 'Mouse' - where the mouse is, or
  42. 'Active' - where the active window is -->
  43. </placement>
  44. <theme>
  45. <name>Clearlooks</name>
  46. <titleLayout>NLIMC</titleLayout>
  47. <!--
  48. available characters are NDSLIMC, each can occur at most once.
  49. N: window icon
  50. L: window label (AKA title).
  51. I: iconify
  52. M: maximize
  53. C: close
  54. S: shade (roll up/down)
  55. D: omnipresent (on all desktops).
  56. -->
  57. <keepBorder>yes</keepBorder>
  58. <animateIconify>yes</animateIconify>
  59. <font place="ActiveWindow">
  60. <name>sans</name>
  61. <size>8</size>
  62. <!-- font size in points -->
  63. <weight>bold</weight>
  64. <!-- 'bold' or 'normal' -->
  65. <slant>normal</slant>
  66. <!-- 'italic' or 'normal' -->
  67. </font>
  68. <font place="InactiveWindow">
  69. <name>sans</name>
  70. <size>8</size>
  71. <!-- font size in points -->
  72. <weight>bold</weight>
  73. <!-- 'bold' or 'normal' -->
  74. <slant>normal</slant>
  75. <!-- 'italic' or 'normal' -->
  76. </font>
  77. <font place="MenuHeader">
  78. <name>sans</name>
  79. <size>9</size>
  80. <!-- font size in points -->
  81. <weight>normal</weight>
  82. <!-- 'bold' or 'normal' -->
  83. <slant>normal</slant>
  84. <!-- 'italic' or 'normal' -->
  85. </font>
  86. <font place="MenuItem">
  87. <name>sans</name>
  88. <size>9</size>
  89. <!-- font size in points -->
  90. <weight>normal</weight>
  91. <!-- 'bold' or 'normal' -->
  92. <slant>normal</slant>
  93. <!-- 'italic' or 'normal' -->
  94. </font>
  95. <font place="ActiveOnScreenDisplay">
  96. <name>sans</name>
  97. <size>9</size>
  98. <!-- font size in points -->
  99. <weight>bold</weight>
  100. <!-- 'bold' or 'normal' -->
  101. <slant>normal</slant>
  102. <!-- 'italic' or 'normal' -->
  103. </font>
  104. <font place="InactiveOnScreenDisplay">
  105. <name>sans</name>
  106. <size>9</size>
  107. <!-- font size in points -->
  108. <weight>bold</weight>
  109. <!-- 'bold' or 'normal' -->
  110. <slant>normal</slant>
  111. <!-- 'italic' or 'normal' -->
  112. </font>
  113. </theme>
  114. <desktops>
  115. <!-- this stuff is only used at startup, pagers allow you to change them
  116. during a session
  117. these are default values to use when other ones are not already set
  118. by other applications, or saved in your session
  119. use obconf if you want to change these without having to log out
  120. and back in -->
  121. <number>4</number>
  122. <firstdesk>1</firstdesk>
  123. <names>
  124. <!-- set names up here if you want to, like this:
  125. <name>desktop 1</name>
  126. <name>desktop 2</name>
  127. -->
  128. </names>
  129. <popupTime>875</popupTime>
  130. <!-- The number of milliseconds to show the popup for when switching
  131. desktops. Set this to 0 to disable the popup. -->
  132. </desktops>
  133. <resize>
  134. <drawContents>yes</drawContents>
  135. <popupShow>Nonpixel</popupShow>
  136. <!-- 'Always', 'Never', or 'Nonpixel' (xterms and such) -->
  137. <popupPosition>Center</popupPosition>
  138. <!-- 'Center', 'Top', or 'Fixed' -->
  139. <popupFixedPosition>
  140. <!-- these are used if popupPosition is set to 'Fixed' -->
  141. <x>10</x>
  142. <!-- positive number for distance from left edge, negative number for
  143. distance from right edge, or 'Center' -->
  144. <y>10</y>
  145. <!-- positive number for distance from top edge, negative number for
  146. distance from bottom edge, or 'Center' -->
  147. </popupFixedPosition>
  148. </resize>
  149. <!-- You can reserve a portion of your screen where windows will not cover when
  150. they are maximized, or when they are initially placed.
  151. Many programs reserve space automatically, but you can use this in other
  152. cases. -->
  153. <margins>
  154. <top>0</top>
  155. <bottom>0</bottom>
  156. <left>0</left>
  157. <right>0</right>
  158. </margins>
  159. <dock>
  160. <position>TopLeft</position>
  161. <!-- (Top|Bottom)(Left|Right|)|Top|Bottom|Left|Right|Floating -->
  162. <floatingX>0</floatingX>
  163. <floatingY>0</floatingY>
  164. <noStrut>no</noStrut>
  165. <stacking>Above</stacking>
  166. <!-- 'Above', 'Normal', or 'Below' -->
  167. <direction>Vertical</direction>
  168. <!-- 'Vertical' or 'Horizontal' -->
  169. <autoHide>no</autoHide>
  170. <hideDelay>300</hideDelay>
  171. <!-- in milliseconds (1000 = 1 second) -->
  172. <showDelay>300</showDelay>
  173. <!-- in milliseconds (1000 = 1 second) -->
  174. <moveButton>Middle</moveButton>
  175. <!-- 'Left', 'Middle', 'Right' -->
  176. </dock>
  177. <keyboard>
  178. <chainQuitKey>C-g</chainQuitKey>
  179. <!-- Keybindings for desktop switching -->
  180. <keybind key="C-A-Left">
  181. <action name="GoToDesktop">
  182. <to>left</to>
  183. <wrap>no</wrap>
  184. </action>
  185. </keybind>
  186. <keybind key="C-A-Right">
  187. <action name="GoToDesktop">
  188. <to>right</to>
  189. <wrap>no</wrap>
  190. </action>
  191. </keybind>
  192. <keybind key="C-A-Up">
  193. <action name="GoToDesktop">
  194. <to>up</to>
  195. <wrap>no</wrap>
  196. </action>
  197. </keybind>
  198. <keybind key="C-A-Down">
  199. <action name="GoToDesktop">
  200. <to>down</to>
  201. <wrap>no</wrap>
  202. </action>
  203. </keybind>
  204. <keybind key="S-A-Left">
  205. <action name="SendToDesktop">
  206. <to>left</to>
  207. <wrap>no</wrap>
  208. </action>
  209. </keybind>
  210. <keybind key="S-A-Right">
  211. <action name="SendToDesktop">
  212. <to>right</to>
  213. <wrap>no</wrap>
  214. </action>
  215. </keybind>
  216. <keybind key="S-A-Up">
  217. <action name="SendToDesktop">
  218. <to>up</to>
  219. <wrap>no</wrap>
  220. </action>
  221. </keybind>
  222. <keybind key="S-A-Down">
  223. <action name="SendToDesktop">
  224. <to>down</to>
  225. <wrap>no</wrap>
  226. </action>
  227. </keybind>
  228. <keybind key="W-F1">
  229. <action name="GoToDesktop">
  230. <to>1</to>
  231. </action>
  232. </keybind>
  233. <keybind key="W-F2">
  234. <action name="GoToDesktop">
  235. <to>2</to>
  236. </action>
  237. </keybind>
  238. <keybind key="W-F3">
  239. <action name="GoToDesktop">
  240. <to>3</to>
  241. </action>
  242. </keybind>
  243. <keybind key="W-F4">
  244. <action name="GoToDesktop">
  245. <to>4</to>
  246. </action>
  247. </keybind>
  248. <keybind key="W-d">
  249. <action name="ToggleShowDesktop"/>
  250. </keybind>
  251. <!-- Keybindings for windows -->
  252. <keybind key="Alt-S-Q">
  253. <action name="Close"/>
  254. </keybind>
  255. <keybind key="A-Escape">
  256. <action name="Lower"/>
  257. <action name="FocusToBottom"/>
  258. <action name="Unfocus"/>
  259. </keybind>
  260. <keybind key="A-space">
  261. <action name="ShowMenu">
  262. <menu>client-menu</menu>
  263. </action>
  264. </keybind>
  265. <!-- Keybindings for window switching -->
  266. <keybind key="A-Tab">
  267. <action name="NextWindow">
  268. <finalactions>
  269. <action name="Focus"/>
  270. <action name="Raise"/>
  271. <action name="Unshade"/>
  272. </finalactions>
  273. </action>
  274. </keybind>
  275. <keybind key="A-S-Tab">
  276. <action name="PreviousWindow">
  277. <finalactions>
  278. <action name="Focus"/>
  279. <action name="Raise"/>
  280. <action name="Unshade"/>
  281. </finalactions>
  282. </action>
  283. </keybind>
  284. <keybind key="C-A-Tab">
  285. <action name="NextWindow">
  286. <panels>yes</panels>
  287. <desktop>yes</desktop>
  288. <finalactions>
  289. <action name="Focus"/>
  290. <action name="Raise"/>
  291. <action name="Unshade"/>
  292. </finalactions>
  293. </action>
  294. </keybind>
  295. <!-- Keybindings for window switching with the arrow keys -->
  296. <keybind key="W-S-Right">
  297. <action name="DirectionalCycleWindows">
  298. <direction>right</direction>
  299. </action>
  300. </keybind>
  301. <keybind key="W-S-Left">
  302. <action name="DirectionalCycleWindows">
  303. <direction>left</direction>
  304. </action>
  305. </keybind>
  306. <keybind key="W-S-Up">
  307. <action name="DirectionalCycleWindows">
  308. <direction>up</direction>
  309. </action>
  310. </keybind>
  311. <keybind key="W-S-Down">
  312. <action name="DirectionalCycleWindows">
  313. <direction>down</direction>
  314. </action>
  315. </keybind>
  316. <!-- Keybindings for running applications -->
  317. <keybind key="W-e">
  318. <action name="Execute">
  319. <startupnotify>
  320. <enabled>true</enabled>
  321. <name>Konqueror</name>
  322. </startupnotify>
  323. <command>kfmclient openProfile filemanagement</command>
  324. </action>
  325. </keybind>
  326. <keybind key="A-space">
  327. <action name="Execute">
  328. <command>rofi -show run</command>
  329. </action>
  330. </keybind>
  331. <keybind key="A-S-space">
  332. <action name="Execute">
  333. <command>rofi -show window</command>
  334. </action>
  335. </keybind>
  336. <keybind key="W-Return">
  337. <action name="Execute">
  338. <command>st-term</command>
  339. </action>
  340. </keybind>
  341. <keybind key="W-space">
  342. <action name="Maximize"/>
  343. </keybind>
  344. <keybind key="W-S-space">
  345. <action name="Unmaximize"/>
  346. </keybind>
  347. <keybind key="W-S-m">
  348. <action name="Iconify"/>
  349. </keybind>
  350. <keybind key="W-s">
  351. <action name="Shade"/>
  352. </keybind>
  353. <keybind key="W-S-s">
  354. <action name="Unshade"/>
  355. </keybind>
  356. </keyboard>
  357. <mouse>
  358. <dragThreshold>1</dragThreshold>
  359. <!-- number of pixels the mouse must move before a drag begins -->
  360. <doubleClickTime>500</doubleClickTime>
  361. <!-- in milliseconds (1000 = 1 second) -->
  362. <screenEdgeWarpTime>400</screenEdgeWarpTime>
  363. <!-- Time before changing desktops when the pointer touches the edge of the
  364. screen while moving a window, in milliseconds (1000 = 1 second).
  365. Set this to 0 to disable warping -->
  366. <screenEdgeWarpMouse>false</screenEdgeWarpMouse>
  367. <!-- Set this to TRUE to move the mouse pointer across the desktop when
  368. switching due to hitting the edge of the screen -->
  369. <context name="Frame">
  370. <mousebind button="A-Left" action="Press">
  371. <action name="Focus"/>
  372. <action name="Raise"/>
  373. </mousebind>
  374. <mousebind button="A-Left" action="Click">
  375. <action name="Unshade"/>
  376. </mousebind>
  377. <mousebind button="A-Left" action="Drag">
  378. <action name="Move"/>
  379. </mousebind>
  380. <mousebind button="A-Right" action="Press">
  381. <action name="Focus"/>
  382. <action name="Raise"/>
  383. <action name="Unshade"/>
  384. </mousebind>
  385. <mousebind button="A-Right" action="Drag">
  386. <action name="Resize"/>
  387. </mousebind>
  388. <mousebind button="A-Middle" action="Press">
  389. <action name="Lower"/>
  390. <action name="FocusToBottom"/>
  391. <action name="Unfocus"/>
  392. </mousebind>
  393. <mousebind button="A-Up" action="Click">
  394. <action name="GoToDesktop">
  395. <to>previous</to>
  396. </action>
  397. </mousebind>
  398. <mousebind button="A-Down" action="Click">
  399. <action name="GoToDesktop">
  400. <to>next</to>
  401. </action>
  402. </mousebind>
  403. <mousebind button="C-A-Up" action="Click">
  404. <action name="GoToDesktop">
  405. <to>previous</to>
  406. </action>
  407. </mousebind>
  408. <mousebind button="C-A-Down" action="Click">
  409. <action name="GoToDesktop">
  410. <to>next</to>
  411. </action>
  412. </mousebind>
  413. <mousebind button="A-S-Up" action="Click">
  414. <action name="SendToDesktop">
  415. <to>previous</to>
  416. </action>
  417. </mousebind>
  418. <mousebind button="A-S-Down" action="Click">
  419. <action name="SendToDesktop">
  420. <to>next</to>
  421. </action>
  422. </mousebind>
  423. </context>
  424. <context name="Titlebar">
  425. <mousebind button="Left" action="Drag">
  426. <action name="Move"/>
  427. </mousebind>
  428. <mousebind button="Left" action="DoubleClick">
  429. <action name="ToggleMaximize"/>
  430. </mousebind>
  431. <mousebind button="Up" action="Click">
  432. <action name="if">
  433. <shaded>no</shaded>
  434. <then>
  435. <action name="Shade"/>
  436. <action name="FocusToBottom"/>
  437. <action name="Unfocus"/>
  438. <action name="Lower"/>
  439. </then>
  440. </action>
  441. </mousebind>
  442. <mousebind button="Down" action="Click">
  443. <action name="if">
  444. <shaded>yes</shaded>
  445. <then>
  446. <action name="Unshade"/>
  447. <action name="Raise"/>
  448. </then>
  449. </action>
  450. </mousebind>
  451. </context>
  452. <context name="Titlebar Top Right Bottom Left TLCorner TRCorner BRCorner BLCorner">
  453. <mousebind button="Left" action="Press">
  454. <action name="Focus"/>
  455. <action name="Raise"/>
  456. <action name="Unshade"/>
  457. </mousebind>
  458. <mousebind button="Middle" action="Press">
  459. <action name="Lower"/>
  460. <action name="FocusToBottom"/>
  461. <action name="Unfocus"/>
  462. </mousebind>
  463. <mousebind button="Right" action="Press">
  464. <action name="Focus"/>
  465. <action name="Raise"/>
  466. <action name="ShowMenu">
  467. <menu>client-menu</menu>
  468. </action>
  469. </mousebind>
  470. </context>
  471. <context name="Top">
  472. <mousebind button="Left" action="Drag">
  473. <action name="Resize">
  474. <edge>top</edge>
  475. </action>
  476. </mousebind>
  477. </context>
  478. <context name="Left">
  479. <mousebind button="Left" action="Drag">
  480. <action name="Resize">
  481. <edge>left</edge>
  482. </action>
  483. </mousebind>
  484. </context>
  485. <context name="Right">
  486. <mousebind button="Left" action="Drag">
  487. <action name="Resize">
  488. <edge>right</edge>
  489. </action>
  490. </mousebind>
  491. </context>
  492. <context name="Bottom">
  493. <mousebind button="Left" action="Drag">
  494. <action name="Resize">
  495. <edge>bottom</edge>
  496. </action>
  497. </mousebind>
  498. <mousebind button="Right" action="Press">
  499. <action name="Focus"/>
  500. <action name="Raise"/>
  501. <action name="ShowMenu">
  502. <menu>client-menu</menu>
  503. </action>
  504. </mousebind>
  505. </context>
  506. <context name="TRCorner BRCorner TLCorner BLCorner">
  507. <mousebind button="Left" action="Press">
  508. <action name="Focus"/>
  509. <action name="Raise"/>
  510. <action name="Unshade"/>
  511. </mousebind>
  512. <mousebind button="Left" action="Drag">
  513. <action name="Resize"/>
  514. </mousebind>
  515. </context>
  516. <context name="Client">
  517. <mousebind button="Left" action="Press">
  518. <action name="Focus"/>
  519. <action name="Raise"/>
  520. </mousebind>
  521. <mousebind button="Middle" action="Press">
  522. <action name="Focus"/>
  523. <action name="Raise"/>
  524. </mousebind>
  525. <mousebind button="Right" action="Press">
  526. <action name="Focus"/>
  527. <action name="Raise"/>
  528. </mousebind>
  529. </context>
  530. <context name="Icon">
  531. <mousebind button="Left" action="Press">
  532. <action name="Focus"/>
  533. <action name="Raise"/>
  534. <action name="Unshade"/>
  535. <action name="ShowMenu">
  536. <menu>client-menu</menu>
  537. </action>
  538. </mousebind>
  539. <mousebind button="Right" action="Press">
  540. <action name="Focus"/>
  541. <action name="Raise"/>
  542. <action name="ShowMenu">
  543. <menu>client-menu</menu>
  544. </action>
  545. </mousebind>
  546. </context>
  547. <context name="AllDesktops">
  548. <mousebind button="Left" action="Press">
  549. <action name="Focus"/>
  550. <action name="Raise"/>
  551. <action name="Unshade"/>
  552. </mousebind>
  553. <mousebind button="Left" action="Click">
  554. <action name="ToggleOmnipresent"/>
  555. </mousebind>
  556. </context>
  557. <context name="Shade">
  558. <mousebind button="Left" action="Press">
  559. <action name="Focus"/>
  560. <action name="Raise"/>
  561. </mousebind>
  562. <mousebind button="Left" action="Click">
  563. <action name="ToggleShade"/>
  564. </mousebind>
  565. </context>
  566. <context name="Iconify">
  567. <mousebind button="Left" action="Press">
  568. <action name="Focus"/>
  569. <action name="Raise"/>
  570. </mousebind>
  571. <mousebind button="Left" action="Click">
  572. <action name="Iconify"/>
  573. </mousebind>
  574. </context>
  575. <context name="Maximize">
  576. <mousebind button="Left" action="Press">
  577. <action name="Focus"/>
  578. <action name="Raise"/>
  579. <action name="Unshade"/>
  580. </mousebind>
  581. <mousebind button="Middle" action="Press">
  582. <action name="Focus"/>
  583. <action name="Raise"/>
  584. <action name="Unshade"/>
  585. </mousebind>
  586. <mousebind button="Right" action="Press">
  587. <action name="Focus"/>
  588. <action name="Raise"/>
  589. <action name="Unshade"/>
  590. </mousebind>
  591. <mousebind button="Left" action="Click">
  592. <action name="ToggleMaximize"/>
  593. </mousebind>
  594. <mousebind button="Middle" action="Click">
  595. <action name="ToggleMaximize">
  596. <direction>vertical</direction>
  597. </action>
  598. </mousebind>
  599. <mousebind button="Right" action="Click">
  600. <action name="ToggleMaximize">
  601. <direction>horizontal</direction>
  602. </action>
  603. </mousebind>
  604. </context>
  605. <context name="Close">
  606. <mousebind button="Left" action="Press">
  607. <action name="Focus"/>
  608. <action name="Raise"/>
  609. <action name="Unshade"/>
  610. </mousebind>
  611. <mousebind button="Left" action="Click">
  612. <action name="Close"/>
  613. </mousebind>
  614. </context>
  615. <context name="Desktop">
  616. <mousebind button="Up" action="Click">
  617. <action name="GoToDesktop">
  618. <to>previous</to>
  619. </action>
  620. </mousebind>
  621. <mousebind button="Down" action="Click">
  622. <action name="GoToDesktop">
  623. <to>next</to>
  624. </action>
  625. </mousebind>
  626. <mousebind button="A-Up" action="Click">
  627. <action name="GoToDesktop">
  628. <to>previous</to>
  629. </action>
  630. </mousebind>
  631. <mousebind button="A-Down" action="Click">
  632. <action name="GoToDesktop">
  633. <to>next</to>
  634. </action>
  635. </mousebind>
  636. <mousebind button="C-A-Up" action="Click">
  637. <action name="GoToDesktop">
  638. <to>previous</to>
  639. </action>
  640. </mousebind>
  641. <mousebind button="C-A-Down" action="Click">
  642. <action name="GoToDesktop">
  643. <to>next</to>
  644. </action>
  645. </mousebind>
  646. <mousebind button="Left" action="Press">
  647. <action name="Focus"/>
  648. <action name="Raise"/>
  649. </mousebind>
  650. <mousebind button="Right" action="Press">
  651. <action name="Focus"/>
  652. <action name="Raise"/>
  653. </mousebind>
  654. </context>
  655. <context name="Root">
  656. <!-- Menus -->
  657. <mousebind button="Middle" action="Press">
  658. <action name="ShowMenu">
  659. <menu>client-list-combined-menu</menu>
  660. </action>
  661. </mousebind>
  662. <mousebind button="Right" action="Press">
  663. <action name="ShowMenu">
  664. <menu>root-menu</menu>
  665. </action>
  666. </mousebind>
  667. </context>
  668. <context name="MoveResize">
  669. <mousebind button="Up" action="Click">
  670. <action name="GoToDesktop">
  671. <to>previous</to>
  672. </action>
  673. </mousebind>
  674. <mousebind button="Down" action="Click">
  675. <action name="GoToDesktop">
  676. <to>next</to>
  677. </action>
  678. </mousebind>
  679. <mousebind button="A-Up" action="Click">
  680. <action name="GoToDesktop">
  681. <to>previous</to>
  682. </action>
  683. </mousebind>
  684. <mousebind button="A-Down" action="Click">
  685. <action name="GoToDesktop">
  686. <to>next</to>
  687. </action>
  688. </mousebind>
  689. </context>
  690. </mouse>
  691. <menu>
  692. <!-- You can specify more than one menu file in here and they are all loaded,
  693. just don't make menu ids clash or, well, it'll be kind of pointless -->
  694. <!-- default menu file (or custom one in $HOME/.config/openbox/) -->
  695. <file>menu.xml</file>
  696. <hideDelay>200</hideDelay>
  697. <!-- if a press-release lasts longer than this setting (in milliseconds), the
  698. menu is hidden again -->
  699. <middle>no</middle>
  700. <!-- center submenus vertically about the parent entry -->
  701. <submenuShowDelay>100</submenuShowDelay>
  702. <!-- time to delay before showing a submenu after hovering over the parent
  703. entry.
  704. if this is a negative value, then the delay is infinite and the
  705. submenu will not be shown until it is clicked on -->
  706. <submenuHideDelay>400</submenuHideDelay>
  707. <!-- time to delay before hiding a submenu when selecting another
  708. entry in parent menu
  709. if this is a negative value, then the delay is infinite and the
  710. submenu will not be hidden until a different submenu is opened -->
  711. <showIcons>yes</showIcons>
  712. <!-- controls if icons appear in the client-list-(combined-)menu -->
  713. <manageDesktops>yes</manageDesktops>
  714. <!-- show the manage desktops section in the client-list-(combined-)menu -->
  715. </menu>
  716. <applications>
  717. <!--
  718. # this is an example with comments through out. use these to make your
  719. # own rules, but without the comments of course.
  720. # you may use one or more of the name/class/role/title/type rules to specify
  721. # windows to match
  722. <application name="the window's _OB_APP_NAME property (see obxprop)"
  723. class="the window's _OB_APP_CLASS property (see obxprop)"
  724. groupname="the window's _OB_APP_GROUP_NAME property (see obxprop)"
  725. groupclass="the window's _OB_APP_GROUP_CLASS property (see obxprop)"
  726. role="the window's _OB_APP_ROLE property (see obxprop)"
  727. title="the window's _OB_APP_TITLE property (see obxprop)"
  728. type="the window's _OB_APP_TYPE property (see obxprob)..
  729. (if unspecified, then it is 'dialog' for child windows)">
  730. # you may set only one of name/class/role/title/type, or you may use more
  731. # than one together to restrict your matches.
  732. # the name, class, role, and title use simple wildcard matching such as those
  733. # used by a shell. you can use * to match any characters and ? to match
  734. # any single character.
  735. # the type is one of: normal, dialog, splash, utility, menu, toolbar, dock,
  736. # or desktop
  737. # when multiple rules match a window, they will all be applied, in the
  738. # order that they appear in this list
  739. # each rule element can be left out or set to 'default' to specify to not
  740. # change that attribute of the window
  741. <decor>yes</decor>
  742. # enable or disable window decorations
  743. <shade>no</shade>
  744. # make the window shaded when it appears, or not
  745. <position force="no">
  746. # the position is only used if both an x and y coordinate are provided
  747. # (and not set to 'default')
  748. # when force is "yes", then the window will be placed here even if it
  749. # says you want it placed elsewhere. this is to override buggy
  750. # applications who refuse to behave
  751. <x>center</x>
  752. # a number like 50, or 'center' to center on screen. use a negative number
  753. # to start from the right (or bottom for <y>), ie -50 is 50 pixels from
  754. # the right edge (or bottom). use 'default' to specify using value
  755. # provided by the application, or chosen by openbox, instead.
  756. <y>200</y>
  757. <monitor>1</monitor>
  758. # specifies the monitor in a xinerama setup.
  759. # 1 is the first head, or 'mouse' for wherever the mouse is
  760. </position>
  761. <size>
  762. # the size to make the window.
  763. <width>20</width>
  764. # a number like 20, or 'default' to use the size given by the application.
  765. # you can use fractions such as 1/2 or percentages such as 75% in which
  766. # case the value is relative to the size of the monitor that the window
  767. # appears on.
  768. <height>30%</height>
  769. </size>
  770. <focus>yes</focus>
  771. # if the window should try be given focus when it appears. if this is set
  772. # to yes it doesn't guarantee the window will be given focus. some
  773. # restrictions may apply, but Openbox will try to
  774. <desktop>1</desktop>
  775. # 1 is the first desktop, 'all' for all desktops
  776. <layer>normal</layer>
  777. # 'above', 'normal', or 'below'
  778. <iconic>no</iconic>
  779. # make the window iconified when it appears, or not
  780. <skip_pager>no</skip_pager>
  781. # asks to not be shown in pagers
  782. <skip_taskbar>no</skip_taskbar>
  783. # asks to not be shown in taskbars. window cycling actions will also
  784. # skip past such windows
  785. <fullscreen>yes</fullscreen>
  786. # make the window in fullscreen mode when it appears
  787. <maximized>true</maximized>
  788. # 'Horizontal', 'Vertical' or boolean (yes/no)
  789. </application>
  790. # end of the example
  791. -->
  792. </applications>
  793. </openbox_config>