summaryrefslogtreecommitdiff
path: root/portato/constants.py
diff options
context:
space:
mode:
authorNecoro <>2007-10-22 21:54:02 +0000
committerNecoro <>2007-10-22 21:54:02 +0000
commit6164e60388eed0f30a705e552e25e7c2b058550c (patch)
tree0c67b7d27a5814e22f5fa8ee46376264ac6fcdc0 /portato/constants.py
parent25edeccbc87cf8821aea8a26faabb899443a3f9c (diff)
downloadportato-6164e60388eed0f30a705e552e25e7c2b058550c.tar.gz
portato-6164e60388eed0f30a705e552e25e7c2b058550c.tar.bz2
portato-6164e60388eed0f30a705e552e25e7c2b058550c.zip
use shm instead of pipes
Diffstat (limited to 'portato/constants.py')
-rw-r--r--portato/constants.py8
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/"