From c2311693b034f0f9c4885c54d6db8e5e0b580540 Mon Sep 17 00:00:00 2001 From: Foldex Date: Mon, 20 Mar 2023 19:38:18 -0400 Subject: [PATCH] Installer: Make Full Theme the Default --- install.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.py b/install.py index 4f972abf..685e48ba 100755 --- a/install.py +++ b/install.py @@ -272,7 +272,7 @@ def patch_client_css(source: Path, target: Path, name: str): parser.add_argument("-p", "--patch", nargs = "+", action = "extend", help = "Apply one or multiple patches") parser.add_argument("-n", "--name", default = SKIN_DIR, help = "Rename installed skin") parser.add_argument("-nsp", "--no-steam-patch", action = "store_true", help = "Do not patch steam files") - parser.add_argument("-w", "--web-theme", choices = ["base", "full", "none"], default = "base", help = "Choose web theme variant") + parser.add_argument("-w", "--web-theme", choices = ["base", "full", "none"], default = "full", help = "Choose web theme variant") parser.add_argument("-we", "--web-extras", nargs = "+", action = "extend", help = "Enable one or multiple web theme extras") args = parser.parse_args()