diff options
author | Necoro <> | 2007-10-22 21:54:02 +0000 |
---|---|---|
committer | Necoro <> | 2007-10-22 21:54:02 +0000 |
commit | 6164e60388eed0f30a705e552e25e7c2b058550c (patch) | |
tree | 0c67b7d27a5814e22f5fa8ee46376264ac6fcdc0 /portato/constants.py | |
parent | 25edeccbc87cf8821aea8a26faabb899443a3f9c (diff) | |
download | portato-6164e60388eed0f30a705e552e25e7c2b058550c.tar.gz portato-6164e60388eed0f30a705e552e25e7c2b058550c.tar.bz2 portato-6164e60388eed0f30a705e552e25e7c2b058550c.zip |
use shm instead of pipes
Diffstat (limited to '')
-rw-r--r-- | portato/constants.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/portato/constants.py b/portato/constants.py index c76b737..66ddf8d 100644 --- a/portato/constants.py +++ b/portato/constants.py @@ -56,6 +56,10 @@ These should be set during the installation. import os from os.path import join as pjoin +# icons +ICON_DIR = "icons/" +APP_ICON = pjoin(ICON_DIR, "portato-icon.png") + # general APP = "portato" VERSION = "9999" @@ -71,10 +75,6 @@ STD_FRONTEND = "gtk" CONFIG_DIR = "/etc/portato/" CONFIG_LOCATION = pjoin(CONFIG_DIR, "portato.cfg") -# icons -ICON_DIR = "icons/" -APP_ICON = pjoin(ICON_DIR, "portato-icon.png") - # misc dirs DATA_DIR = "./" LOCALE_DIR = "i18n/" |