Advertisement
timcowchip

~/.jwmrc

Jan 12th, 2016
202
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.34 KB | None | 0 0
  1. <?xml version="1.0"?>
  2. <JWM>
  3.  
  4. <!-- The root menu. -->
  5. <RootMenu onroot="12">
  6. <Program icon="crux.png" label="Menu">dmenu_run</Program>
  7. <Program icon="term.png" label="Terminal">roxterm</Program>
  8. <Program icon="mousepad.png" label="Geany">geany</Program>
  9. <Program icon="spacefm.png" label="Spacefm">spacefm</Program>
  10. <Program icon="fasterfox.png" label="Firefox">firefox</Program>
  11. <Program icon="chrome.png" label="Chromium">chromium</Program>
  12. <Program icon="gpodder.png" label="gPodder">gpodder</Program>
  13. <Program icon="hexchat.png" label="Hexchat">hexchat</Program>
  14. <Program icon="fitbit.png" label="Galileo">urxvt -e galileo && midori</Program
  15. <Program icon="cmus.png" label="Deadbeef">deadbeef</Program>
  16.  
  17. <Menu icon="nutyx.png" label="Utilities">
  18. <Program icon="xkill.png" label="Xkill">xkill</Program>
  19. <Program icon="computer.png" label="Window Properties">
  20. xprop | xmessage -file -
  21. </Program>
  22. </Menu>
  23. <Separator/>
  24. <Program icon="shutdown.png" label="Shutdown">./exit</Program>
  25. <Restart label="Restart" icon="restart.png"/>
  26. <Exit label="Exit" confirm="true" icon="exit.png"/>
  27. </RootMenu>
  28.  
  29. <!-- Options for program groups. -->
  30. <Group>
  31. <Class>Pidgin</Class>
  32. <Option>sticky</Option>
  33. </Group>
  34. <Group>
  35. <Name>xterm</Name>
  36. <Option>vmax</Option>
  37. <Option>icon:terminal.png</Option>
  38. </Group>
  39. <Group>
  40. <Name>xedit</Name>
  41. <Option>icon:editor.png</Option>
  42. </Group>
  43. <Group>
  44. <Name>xcalc</Name>
  45. <Option>icon:calculator.png</Option>
  46. </Group>
  47.  
  48. <!-- Tray at the bottom. -->
  49. <Tray x="0" y="-1" autohide="off">
  50.  
  51. <TrayButton label="JWM">root:1</TrayButton>
  52.  
  53. <Pager labeled="true"/>
  54.  
  55. <TaskList maxwidth="256"/>
  56.  
  57. <Dock/>
  58. <Clock><Button mask="123">exec:xclock</Button></Clock>
  59.  
  60. </Tray>
  61.  
  62. <!-- Visual Styles -->
  63. <WindowStyle>
  64. <Font>Sans-9:bold</Font>
  65. <Width>4</Width>
  66. <Height>21</Height>
  67. <Corner>4</Corner>
  68. <Foreground>#FFFFFF</Foreground>
  69. <Background>#555555</Background>
  70. <Opacity>0.5:0.9:0.1</Opacity>
  71. <Active>
  72. <Foreground>#FFFFFF</Foreground>
  73. <Background>#0077CC</Background>
  74. <Opacity>0.8</Opacity>
  75. </Active>
  76. </WindowStyle>
  77. <TrayStyle>
  78. <Font>Sans-9</Font>
  79. <Background>#999999</Background>
  80. <Foreground>#000000</Foreground>
  81. <Opacity>0.75</Opacity>
  82. </TrayStyle>
  83. <PagerStyle>
  84. <Outline>#000000</Outline>
  85. <Foreground>#333333</Foreground>
  86. <Background>#999999</Background>
  87. <Active>
  88. <Foreground>#0077CC</Foreground>
  89. <Background>#555555</Background>
  90. </Active>
  91. </PagerStyle>
  92. <MenuStyle>
  93. <Font>Sans-9</Font>
  94. <Foreground>#000000</Foreground>
  95. <Background>#999999</Background>
  96. <Active>
  97. <Foreground>#000000</Foreground>
  98. <Background>#0077CC</Background>
  99. </Active>
  100. <Opacity>0.85</Opacity>
  101. </MenuStyle>
  102. <PopupStyle>
  103. <Font>Sans-9</Font>
  104. <Foreground>#000000</Foreground>
  105. <Background>#999999</Background>
  106. </PopupStyle>
  107.  
  108. <!-- Path where icons can be found.
  109. IconPath can be listed multiple times to allow searching
  110. for icons in multiple paths.
  111. -->
  112. <IconPath>
  113. /home/timcowchip/Images
  114. </IconPath>
  115.  
  116. <!-- Virtual Desktops -->
  117. <!-- Desktop tags can be contained within Desktops for desktop names. -->
  118. <Desktops width="6" height="0.5">
  119. <!-- Default background. Note that a Background tag can be
  120. contained within a Desktop tag to give a specific background
  121. for that desktop.
  122. -->
  123. <Background type="solid">#222222</Background>
  124. </Desktops>
  125.  
  126. <!-- Double click speed (in milliseconds) -->
  127. <DoubleClickSpeed>400</DoubleClickSpeed>
  128.  
  129. <!-- Double click delta (in pixels) -->
  130. <DoubleClickDelta>2</DoubleClickDelta>
  131.  
  132. <!-- The focus model (sloppy or click) -->
  133. <FocusModel>sloppy</FocusModel>
  134.  
  135. <!-- The snap mode (none, screen, or border) -->
  136. <SnapMode distance="10">border</SnapMode>
  137.  
  138. <!-- The move mode (outline or opaque) -->
  139. <MoveMode>opaque</MoveMode>
  140.  
  141. <!-- The resize mode (outline or opaque) -->
  142. <ResizeMode>opaque</ResizeMode>
  143.  
  144. <!-- Key bindings -->
  145. <Key key="Up">up</Key>
  146. <Key key="Down">down</Key>
  147. <Key key="Right">right</Key>
  148. <Key key="Left">left</Key>
  149. <Key key="h">left</Key>
  150. <Key key="j">down</Key>
  151. <Key key="k">up</Key>
  152. <Key key="l">right</Key>
  153. <Key key="Return">select</Key>
  154. <Key key="Escape">escape</Key>
  155.  
  156. <Key mask="A" key="Tab">nextstacked</Key>
  157. <Key mask="A" key="F4">close</Key>
  158. <Key mask="A" key="#">desktop#</Key>
  159. <Key mask="A" key="F1">root:1</Key>
  160. <Key mask="A" key="F2">window</Key>
  161. <Key mask="A" key="F10">maximize</Key>
  162. <Key mask="A" key="Right">rdesktop</Key>
  163. <Key mask="A" key="Left">ldesktop</Key>
  164. <Key mask="A" key="Up">udesktop</Key>
  165. <Key mask="A" key="Down">ddesktop</Key>
  166.  
  167. <StartupCommand>./start</StartupCommand>
  168.  
  169. </JWM>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement