diff options
| author | Chandler J <cjustice2000@gmail.com> | 2024-04-17 12:43:59 -0600 |
|---|---|---|
| committer | Chandler J <cjustice2000@gmail.com> | 2024-04-17 12:43:59 -0600 |
| commit | a30a7ead48e83cab0aa320b41e72df83653bd8d1 (patch) | |
| tree | 6c79bd1b67f71a0c550a48ca79308e8e2527d2a8 /src | |
| parent | a29669bd7a921f32636043041d3081e668a838ae (diff) | |
Diffstat (limited to 'src')
| -rw-r--r-- | src/user_interface.py | 8 |
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})') |
