diff options
| author | Gilles Castel <gilles@castel.dev> | 2020-11-18 10:44:49 +0100 |
|---|---|---|
| committer | Gilles Castel <gilles@castel.dev> | 2020-11-18 10:44:49 +0100 |
| commit | cd404e38a7d3c65d6ccc28d87e379eefaea15cd7 (patch) | |
| tree | df93fecc0d88149b0c1f50f176f3fa012f7bfa3f | |
| parent | d3b26f2a5736f37b470880ca2931465b3afef03a (diff) | |
Fix #22
| -rw-r--r-- | styles.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) |
