diff options
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) |