index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Dylan Taylor <dylan@dylanmtaylor.com> | 2021-04-08 15:35:33 -0400 |
---|---|---|
committer | Dylan Taylor <dylan@dylanmtaylor.com> | 2021-04-08 15:35:33 -0400 |
commit | dfec4b77fd948317108a8306347b1bf74f82042c (patch) | |
tree | dab2852dad70deead3f217b3c5c299027bd3c105 /profiles | |
parent | 5ec1e1d4f5bd7844aa3d42c093a2e59e7cebb859 (diff) |
-rw-r--r-- | profiles/cinnamon.py | 2 | ||||
-rw-r--r-- | profiles/desktop.py | 2 |
diff --git a/profiles/cinnamon.py b/profiles/cinnamon.py index dac38bd3..91a59811 100644 --- a/profiles/cinnamon.py +++ b/profiles/cinnamon.py @@ -2,6 +2,8 @@ import archinstall +is_top_level_profile = False + def _prep_function(*args, **kwargs): """ Magic function called by the importing installer diff --git a/profiles/desktop.py b/profiles/desktop.py index 1e914546..4a31399a 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'] + supported_desktops = ['gnome', 'kde', 'awesome', 'sway', 'cinnamon'] desktop = archinstall.generic_select(supported_desktops, 'Select your desired desktop environment: ') # Temporarily store the selected desktop profile |