index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Dylan Taylor <dylan@dylanmtaylor.com> | 2021-04-08 15:41:08 -0400 |
---|---|---|
committer | Dylan Taylor <dylan@dylanmtaylor.com> | 2021-04-08 15:41:08 -0400 |
commit | 72f3423798586430b1849083e3a4ae65013ad613 (patch) | |
tree | 97c7818c893ca13ee0f2d388dd359a39d16736d4 | |
parent | 84e6db27bb0454625873db85e0e58e35b5333901 (diff) |
-rw-r--r-- | profiles/desktop.py | 2 | ||||
-rw-r--r-- | profiles/xfce4.py | 2 |
diff --git a/profiles/desktop.py b/profiles/desktop.py index 4a31399a..d552a17f 100644 --- a/profiles/desktop.py +++ b/profiles/desktop.py @@ -16,7 +16,7 @@ def _prep_function(*args, **kwargs): for more input before any other installer steps start. """ - supported_desktops = ['gnome', 'kde', 'awesome', 'sway', 'cinnamon'] + supported_desktops = ['gnome', 'kde', 'awesome', 'sway', 'cinnamon', 'xfce4'] desktop = archinstall.generic_select(supported_desktops, 'Select your desired desktop environment: ') # Temporarily store the selected desktop profile diff --git a/profiles/xfce4.py b/profiles/xfce4.py index 36c9958a..fee8c37a 100644 --- a/profiles/xfce4.py +++ b/profiles/xfce4.py @@ -3,6 +3,8 @@ import archinstall +is_top_level_profile = False + def _prep_function(*args, **kwargs): """ Magic function called by the importing installer |