summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
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"