]> Dogcows Code - chaz/openbox/blob - scripts/config.py
dont provide a default icon in the python stuff, itll come from the style
[chaz/openbox] / 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 = [ "icon", "title", "alldesktops", "iconify", "maximize", "close" ]
9 TITLEBAR_LAYOUT = "NTIMC"
10 """The layout of the buttons/label on client titlebars, can be made up of the
11 following:
12 I - iconify button
13 L - text label
14 M - maximize button,
15 D - all-desktops button
16 C - close button
17 If no 'L' is included in the string, one will be added to the end by
18 Openbox."""
19
20 DOUBLE_CLICK_DELAY = 300
21 """The number of milliseconds in which 2 clicks are perceived as a
22 double-click."""
23
24 DRAG_THRESHOLD = 3
25 """The amount of pixels that you have to drag the mouse before motion events
26 will start occuring."""
27
28 DESKTOP_NAMES = ["one", "two", "three", "four", "five", "six", "seven", \
29 "eight", "nine", "ten", "eleven", "twelve"]
30 """The name of each desktop."""
31
32 NUMBER_OF_DESKTOPS = 4
33 """The number of desktops/workspaces which can be scrolled between."""
34
35 #############################################################################
36
37 print "Loaded config.py"
This page took 0.035856 seconds and 5 git commands to generate.