summaryrefslogtreecommitdiff
path: root/src/user_interface.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/user_interface.py')
-rw-r--r--src/user_interface.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/user_interface.py b/src/user_interface.py
index d79dbb9..5c28f58 100644
--- a/src/user_interface.py
+++ b/src/user_interface.py
@@ -122,10 +122,10 @@ def themeSelector(theme_dir):
colors = ''
comp_colors = ''
for j in range(len(theme['colors'])):
- colors += f'[on {theme['colors'][j]}] [/on {theme['colors'][j]}]'
- comp_colors += f'[on {theme['comp_colors'][j]}] [/on {theme['comp_colors'][j]}]'
- print(f'{colors} Theme ({i}): {theme['name']}\n{comp_colors} Wallpaper: {theme['wallpaper']}')
- os.system(f'viu {theme['wallpaper']} -w 50')
+ colors += f'[on {theme["colors"][j]}] [/on {theme["colors"][j]}]'
+ comp_colors += f'[on {theme["comp_colors"][j]}] [/on {theme["comp_colors"][j]}]'
+ print(f'{colors} Theme ({i}): {theme["name"]}\n{comp_colors} Wallpaper: {theme["wallpaper"]}')
+ os.system(f'viu {theme["wallpaper"]} -w 50')
print(f'[bold green]Select theme (0, {num_themes})')