diff --git a/MANIFEST b/MANIFEST index 4557d8c..56b8f53 100644 --- a/MANIFEST +++ b/MANIFEST @@ -1,6 +1,7 @@ LICENSE README oblogout +openbox-logout.conf setup.py openboxlogout/__init__.py openboxlogout/openboxlogout.py @@ -12,6 +13,15 @@ openboxlogout/themes/default/cancel.png openboxlogout/themes/default/logout.png openboxlogout/themes/default/restart.png openboxlogout/themes/default/shutdown.png +openboxlogout/themes/foom/cancel.png +openboxlogout/themes/foom/hibernate.png +openboxlogout/themes/foom/lock.png +openboxlogout/themes/foom/logout.png +openboxlogout/themes/foom/oblog_icons.7z +openboxlogout/themes/foom/restart.png +openboxlogout/themes/foom/shutdown.png +openboxlogout/themes/foom/suspend.png +openboxlogout/themes/foom/switch.png openboxlogout/themes/oxygen/cancel.png openboxlogout/themes/oxygen/hibernate.png openboxlogout/themes/oxygen/lock.png diff --git a/MANIFEST.in b/MANIFEST.in index a50dd20..5ba638a 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,4 +1,4 @@ -include openboxlogout oblogout README LICENSE +include openboxlogout oblogout README LICENSE openbox-logout.conf recursive-include openboxlogout/pofiles * recursive-include openboxlogout/locale * recursive-include openboxlogout/themes * diff --git a/README b/README index c7b18d4..f2a31cd 100644 --- a/README +++ b/README @@ -26,8 +26,7 @@ INSTALLATION - Run ./setup.py install - - Copy openbox-logout.conf to /etc - - Customise the config as required + - Customise the config (/etc/openbox-logout.conf) as required ###### diff --git a/setup.py b/setup.py index 9c9f9e4..acac8a7 100755 --- a/setup.py +++ b/setup.py @@ -55,6 +55,10 @@ def find_data_files(srcdir, *wildcards, **kw): ## directories too. files = find_data_files('openboxlogout/', '*.*') +# Extra entry for config file copied to /etc/ +files.append(('/etc/', ['openbox-logout.conf'])) + +print files from distutils.core import setup