Skip to content

Commit

Permalink
Installer: color theme fix (Fixes #135)
Browse files Browse the repository at this point in the history
  • Loading branch information
tkashkin committed Apr 2, 2023
1 parent 5a64ac1 commit 56d1ac9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Adwaita/resource/menus/steam.menu
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ menubar
{
text=""

SkinVersion { text="Adwaita for Steam v0.36" shellcmd="steam://openurl/https://github.com/tkashkin/Adwaita-for-Steam" }
SkinVersion { text="Adwaita for Steam v0.37" shellcmd="steam://openurl/https://github.com/tkashkin/Adwaita-for-Steam" }

Divider {}

Expand Down
2 changes: 1 addition & 1 deletion install.py
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ def patch_client_css(source: Path, target: Path, name: str):
selected_theme_assets = cta
else:
t = args.color_theme.removesuffix(".theme")
selected_theme = colorthemedir / t / "{}{}".format(t, t, ".theme")
selected_theme = colorthemedir / t / "{}{}".format(t, ".theme")
selected_theme_assets = colorthemedir / t / "assets"
if not selected_theme.exists():
raise SystemExit(f"{TEXT_RED}{TEXT_CROSS} {TEXT_BOLD}{selected_theme}{TEXT_RESET}{TEXT_RED} theme not found.{TEXT_RESET}")
Expand Down

0 comments on commit 56d1ac9

Please sign in to comment.