summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2003-01-02 21:05:29 +0000
committerDana Jansens <danakj@orodu.net>2003-01-02 21:05:29 +0000
commit14cf42ff0780bf58a6b54c9443c87c7402b61faa (patch)
treeb4517a43cf036fd482b655d978660cf5d7ff990d /scripts
parent6d58d84f22887f03ac5471b9775452b90103b6f0 (diff)
run scripts before initializing screens. kill the globals.py. add the python_get_stringlist.
Diffstat (limited to 'scripts')
-rw-r--r--scripts/globals.py14
1 files changed, 0 insertions, 14 deletions
diff --git a/scripts/globals.py b/scripts/globals.py
deleted file mode 100644
index 450ee8b7..00000000
--- a/scripts/globals.py
+++ /dev/null
@@ -1,14 +0,0 @@
-#############################################################################
-### 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 = []
-for i in range(Openbox_screenCount(openbox)):
- screens.append(Openbox_screen(openbox, i))
-
-
-print "Loaded globals.py"