all repos — openbox @ fd7668947091b11c9d9d5775edf5f414e4be6173

openbox fork - make it a bit more like ryudo

scripts/config.py (raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#############################################################################
### Options that can be changed to adjust the behavior of Openbox.        ###
#############################################################################

THEME = "/usr/local/share/openbox/styles/fieron2"
"""The theme used to decorate everything."""

#TITLEBAR_LAYOUT = [ "icon", "title", "alldesktops", "iconify", "maximize", "close" ]
TITLEBAR_LAYOUT = "NTIMC"
"""The layout of the buttons/label on client titlebars, can be made up of the
following:
    I - iconify button
    L - text label
    M - maximize button,
    D - all-desktops button
    C - close button
If no 'L' is included in the string, one will be added to the end by
Openbox."""

DOUBLE_CLICK_DELAY = 300
"""The number of milliseconds in which 2 clicks are perceived as a
double-click."""

DRAG_THRESHOLD = 3
"""The amount of pixels that you have to drag the mouse before motion events
will start occuring."""

DESKTOP_NAMES = ["one", "two", "three", "four", "five", "six", "seven", \
                 "eight", "nine", "ten", "eleven", "twelve"]
"""The name of each desktop."""

NUMBER_OF_DESKTOPS = 4
"""The number of desktops/workspaces which can be scrolled between."""

#############################################################################

print "Loaded config.py"