blob: 98f71c34155e34c8be0cc9464b6e9313dc4b08d5 (
plain)
1
2
3
4
5
6
7
8
9
|
# openbox - pointer to the current Openbox instance
openbox = Openbox_instance()
# screen - list of all screens in the current openbox instance
screen = []
for i in range(Openbox_screenCount(openbox)):
screen.append(Openbox_screen(openbox, i))
print "Loaded globals.py"
|