]> icculus.org git repositories - mikachu/openbox.git/blob - scripts/config.py
add latex to the doc build process. fix namespace comments again.
[mikachu/openbox.git] / scripts / config.py
1 #############################################################################
2 ### Options that can be changed to adjust the behavior of Openbox.        ###
3 #############################################################################
4
5 THEME = "/usr/local/share/openbox/styles/fieron2"
6 """The theme used to decorate everything."""
7
8 TITLEBAR_LAYOUT = "DILMC"
9 """The layout of the buttons/label on client titlebars, can be made up of the
10 following:
11     I - iconify button
12     L - text label
13     M - maximize button,
14     D - all-desktops button
15     C - close button
16 If no 'L' is included in the string, one will be added to the end by
17 Openbox."""
18
19 DOUBLE_CLICK_DELAY = 300
20 """The number of milliseconds in which 2 clicks are perceived as a
21 double-click."""
22
23 DRAG_THRESHOLD = 3
24 """The amount of pixels that you have to drag the mouse before motion events
25 will start occuring."""
26
27 DESKTOP_NAMES = ["one", "two", "three", "four", "five", "six", "seven", \
28                  "eight", "nine", "ten", "eleven", "twelve"]
29 """The name of each desktop."""
30
31 NUMBER_OF_DESKTOPS = 4
32 """The number of desktops/workspaces which can be scrolled between."""
33
34 #############################################################################
35
36 print "Loaded config.py"