]> Dogcows Code - chaz/openbox/blob - scripts/globals.py
450ee8b7dc62faab980eeba63ada871520fc7da1
[chaz/openbox] / scripts / globals.py
1 #############################################################################
2 ### Variables defined for other scripts to use. ###
3 #############################################################################
4
5 # openbox - pointer to the current Openbox instance
6 openbox = Openbox_instance()
7
8 # screens - list of all screens in the current openbox instance
9 screens = []
10 for i in range(Openbox_screenCount(openbox)):
11 screens.append(Openbox_screen(openbox, i))
12
13
14 print "Loaded globals.py"
This page took 0.031552 seconds and 4 git commands to generate.