summaryrefslogtreecommitdiff
path: root/styles.py
diff options
context:
space:
mode:
Diffstat (limited to 'styles.py')
-rw-r--r--styles.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/styles.py b/styles.py
index 4085b30..b5574c5 100644
--- a/styles.py
+++ b/styles.py
@@ -21,7 +21,7 @@ data_dirs = {
'object': create_if_not_exists(CONFIG_PATH / 'objects'),
}
-rofi_theme_params = ['-theme', config['rofi_theme']] if 'rofi_theme' in config else []
+rofi_theme_params = ['-theme', config['rofi_theme']] if ('rofi_theme' in config and config['rofi_theme'] is not None) else []
print(data_dirs)