Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/profiles/budgie.py
diff options
context:
space:
mode:
authorDylan Taylor <dylan@dylanmtaylor.com>2021-04-09 08:29:58 -0400
committerDylan Taylor <dylan@dylanmtaylor.com>2021-04-09 08:32:58 -0400
commit326b96d80869bc9c67eec89eb05bea2fac131939 (patch)
tree7daae129039692590774b7ce2901974a5097dcaa /profiles/budgie.py
parentb86233d7bae14366621b090cfddfb467bd5fa135 (diff)
Add budgie implementation
Diffstat (limited to 'profiles/budgie.py')
-rw-r--r--profiles/budgie.py34
1 files changed, 34 insertions, 0 deletions
diff --git a/profiles/budgie.py b/profiles/budgie.py
new file mode 100644
index 00000000..6c5475ae
--- /dev/null
+++ b/profiles/budgie.py
@@ -0,0 +1,34 @@
+# A desktop environment using "budgie"
+
+import archinstall
+
+is_top_level_profile = False
+
+def _prep_function(*args, **kwargs):
+ """
+ Magic function called by the importing installer
+ before continuing any further. It also avoids executing any
+ other code in this stage. So it's a safe way to ask the user
+ for more input before any other installer steps start.
+ """
+
+ # budgie requires a functioning Xorg installation.
+ profile = archinstall.Profile(None, 'xorg')
+ with profile.load_instructions(namespace='xorg.py') as imported:
+ if hasattr(imported, '_prep_function'):
+ return imported._prep_function()
+ else:
+ print('Deprecated (??): xorg profile has no _prep_function() anymore')
+
+# Ensures that this code only gets executed if executed
+# through importlib.util.spec_from_file_location("budgie", "/somewhere/budgie.py")
+# or through conventional import budgie
+if __name__ == 'budgie':
+ # Install dependency profiles
+ installation.install_profile('xorg')
+
+ # Install the application budgie from the template under /applications/
+ budgie = archinstall.Application(installation, 'budgie')
+ budgie.install()
+
+ installation.enable_service('lightdm') # Light Display Manager