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