openbox/scripts/globals.py

15 lines
515 B
Python
Raw Normal View History

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()
# 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)):
screens.append(Openbox_screen(openbox, i))
2002-12-31 08:50:13 +00:00
print "Loaded globals.py"