diff options
author | Florent Le Coz <louiz@louiz.org> | 2011-11-09 01:26:54 +0100 |
---|---|---|
committer | Florent Le Coz <louiz@louiz.org> | 2011-11-09 01:26:54 +0100 |
commit | 75ae1772e49a59b373c26d1c942f25edd473921c (patch) | |
tree | 65d8faee081db6c3800a48eff7007a4b626e4252 /data | |
parent | 8f02b6eb8e022ed1d34e0a0b0c7376eaf58acc32 (diff) | |
parent | 23d81901e7725bf67363113bc36a6e171bdb2033 (diff) | |
download | poezio-75ae1772e49a59b373c26d1c942f25edd473921c.tar.gz poezio-75ae1772e49a59b373c26d1c942f25edd473921c.tar.bz2 poezio-75ae1772e49a59b373c26d1c942f25edd473921c.tar.xz poezio-75ae1772e49a59b373c26d1c942f25edd473921c.zip |
Merge branch 'master' of http://git.louiz.org/poezio
Diffstat (limited to 'data')
-rw-r--r-- | data/default_config.cfg | 7 | ||||
-rw-r--r-- | data/themes/dark.py | 1 |
2 files changed, 8 insertions, 0 deletions
diff --git a/data/default_config.cfg b/data/default_config.cfg index 279f902d..e803a7d1 100644 --- a/data/default_config.cfg +++ b/data/default_config.cfg @@ -125,6 +125,13 @@ use_log = false # you want to use instead. This directory will be created if it doesn't exist log_dir = +# If plugins_dir is not set, plugins will be loaded from $XDG_DATA_HOME/poezio/plugins. +# You can specify an other directory to use. It will be created if it doesn't exist +plugins_dir = + +# Space separated list of plugins to load on startup +plugins_autoload = + # the full path to the photo (avatar) you want to use # it should be less than 16Ko # The avatar is not set by default, because it slows diff --git a/data/themes/dark.py b/data/themes/dark.py index bbe226f8..015e2988 100644 --- a/data/themes/dark.py +++ b/data/themes/dark.py @@ -8,6 +8,7 @@ class DarkTheme(theming.Theme): COLOR_STATUS_CHAT = (34 , -1) COLOR_STATUS_UNAVAILABLE = (242 , -1) COLOR_STATUS_ONLINE = (27 , -1) + COLOR_STATUS_NONE = (27 , -1) COLOR_VERTICAL_SEPARATOR = (236, -1) COLOR_NEW_TEXT_SEPARATOR = (213, -1) |