Reorganised files for standard module locations

This commit is contained in:
Andrew Williams
2009-01-17 03:16:29 +00:00
parent 76692c7642
commit d510b98ce9
25 changed files with 128 additions and 0 deletions

12
oblogout Executable file
View File

@@ -0,0 +1,12 @@
#!/usr/bin/python
import os
from openboxlogout import openboxlogout
if os.path.exists('openbox-logout.conf'):
config = 'openbox-logout.conf'
else:
config = None
app = OpenboxLogout(config)
app.run()