mirror of
https://github.com/dylanaraps/pywal.git
synced 2025-05-20 16:20:53 +02:00
Do for all types of themes
(dark, light, user)
This commit is contained in:
parent
3476989e6b
commit
fe700cb77a
@ -24,14 +24,16 @@ def list_out():
|
|||||||
|
|
||||||
if user_themes:
|
if user_themes:
|
||||||
print("\033[1;32mUser Themes\033[0m:")
|
print("\033[1;32mUser Themes\033[0m:")
|
||||||
print(" -", "\n - ".join(sorted(user_themes)))
|
print(" -", "\n - ".join(t + " (last used)" if t == last_used_theme else t
|
||||||
|
for t in sorted(user_themes)))
|
||||||
|
|
||||||
print("\033[1;32mDark Themes\033[0m:")
|
print("\033[1;32mDark Themes\033[0m:")
|
||||||
print(" -", "\n - ".join(sorted(dark_themes)))
|
print(" -", "\n - ".join(t + " (last used)" if t == last_used_theme else t
|
||||||
print(" -", "\n - ".join(t + " (last used)" if t == last_used_theme else t for t in sorted(dark_themes)))
|
for t in sorted(dark_themes)))
|
||||||
|
|
||||||
print("\033[1;32mLight Themes\033[0m:")
|
print("\033[1;32mLight Themes\033[0m:")
|
||||||
print(" -", "\n - ".join(sorted(ligh_themes)))
|
print(" -", "\n - ".join(t + " (last used)" if t == last_used_theme else t
|
||||||
|
for t in sorted(ligh_themes)))
|
||||||
|
|
||||||
print("\033[1;32mExtra\033[0m:")
|
print("\033[1;32mExtra\033[0m:")
|
||||||
print(" - random (select a random dark theme)")
|
print(" - random (select a random dark theme)")
|
||||||
|
Loading…
Reference in New Issue
Block a user