From 7af145fedb56385fe6f865e99eeaf47480fe85dd Mon Sep 17 00:00:00 2001 From: Luca Weiss Date: Wed, 7 Jun 2023 22:44:48 +0200 Subject: [PATCH] pmb.config: set default UI to console Weston is since long not a good default choice anymore. Switch it to console which is a (mostly) unopinionated default choice. Reviewed-by: Oliver Smith Link: https://lists.sr.ht/~postmarketos/pmbootstrap-devel/%3C20230607204449.84020-1-luca@z3ntu.xyz%3E --- pmb/config/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pmb/config/__init__.py b/pmb/config/__init__.py index 6646be9b..227ab411 100644 --- a/pmb/config/__init__.py +++ b/pmb/config/__init__.py @@ -134,7 +134,7 @@ defaults = { "ssh_keys": False, "ssh_key_glob": "~/.ssh/id_*.pub", "timezone": "GMT", - "ui": "weston", + "ui": "console", "ui_extras": False, "user": "user", "work": os.path.expanduser("~") + "/.local/var/pmbootstrap",