]>
Dogcows Code - chaz/openbox/blob - scripts/globals.py
1 #############################################################################
2 ### Options that can be defined on startup that affect the behavior of ###
4 #############################################################################
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"]
13 #############################################################################
14 ### Options that can be modified by the user to change the default hooks' ###
16 #############################################################################
18 # click_focus - true if clicking in a client will cause it to focus in the
19 # default hook functions
21 # enter_focus - true if entering a client window will cause it to focus in the
22 # default hook functions
24 # leave_unfocus - true if leaving a client window will cause it to unfocus in
25 # the default hook functions
30 #############################################################################
31 ### Variables defined for other scripts to use. ###
32 #############################################################################
34 # openbox - pointer to the current Openbox instance
35 openbox
= Openbox_instance()
37 # screen - list of all screens in the current openbox instance
39 for i
in range(Openbox_screenCount(openbox
)):
40 screen
.append(Openbox_screen(openbox
, i
))
44 print "Loaded globals.py"
This page took 0.033599 seconds and 4 git commands to generate.