]> Dogcows Code - chaz/openbox/blob - scripts/config.py
load config options from the python environment
[chaz/openbox] / scripts / config.py
1 #############################################################################
2 ### Options that can be defined on startup that affect the behavior of ###
3 ### openbox. ###
4 #############################################################################
5
6 # client_buttons - a list of the modifier(s) and buttons which are grabbed on
7 # client windows (for interactive move/resize, etc).
8 # examples: "A-2", "C-A-2", "W-1"
9 client_buttons = ["A-1", "A-2", "A-3"]
10
11 # theme - the theme used to decorate everything.
12 theme = "/usr/local/share/openbox/styles/nyz"
13
14
15 #############################################################################
16 ### Options that can be modified by the user to change the default hooks' ###
17 ### behaviors. ###
18 #############################################################################
19
20 # click_focus - '1' if clicking in a client will cause it to focus in the
21 # default hook functions; else '0'.
22 click_focus = 0
23 # click_raise - '1' if clicking in a client will cause it to raise to the
24 # top of its stacking layer; else '0'.
25 click_raise = 0
26 # enter_focus - '1' if entering a client window will cause it to focus in the
27 # default hook functions; else '0'.
28 enter_focus = 1
29 # leave_unfocus - '1' if leaving a client window will cause it to unfocus in
30 # the default hook functions; else '0'.
31 leave_unfocus = 1
32
33
34 print "Loaded config.py"
This page took 0.039067 seconds and 5 git commands to generate.