2002-12-31 08:50:13 +00:00
|
|
|
#############################################################################
|
|
|
|
### Variables defined for other scripts to use. ###
|
|
|
|
#############################################################################
|
|
|
|
|
|
|
|
# openbox - pointer to the current Openbox instance
|
|
|
|
openbox = Openbox_instance()
|
|
|
|
|
2002-12-31 19:15:24 +00:00
|
|
|
# screens - list of all screens in the current openbox instance
|
|
|
|
screens = []
|
2002-12-31 08:50:13 +00:00
|
|
|
for i in range(Openbox_screenCount(openbox)):
|
2002-12-31 19:15:24 +00:00
|
|
|
screens.append(Openbox_screen(openbox, i))
|
2002-12-31 08:50:13 +00:00
|
|
|
|
|
|
|
|
2002-12-31 07:19:32 +00:00
|
|
|
print "Loaded globals.py"
|