Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/profiles/applications
diff options
context:
space:
mode:
authorAnton Hvornum <anton@hvornum.se>2021-05-15 22:54:22 +0000
committerGitHub <noreply@github.com>2021-05-15 22:54:22 +0000
commite3c8692bfa65d9b689bb50f9a4469989332adde4 (patch)
tree313530a7dc056fee85c7a2ce6e31b12dd8e61d29 /profiles/applications
parent92e8cdae175c162d38253e6376a94828d1c3987a (diff)
parent0ce2ffa4cf9638ddbcace2f726e6c5ebbbe2ac75 (diff)
Merge pull request #451 from dylanmtaylor/formatting2
More formatting fixes and other quality of life improvements
Diffstat (limited to 'profiles/applications')
-rw-r--r--profiles/applications/awesome.py12
-rw-r--r--profiles/applications/cockpit.py6
2 files changed, 16 insertions, 2 deletions
diff --git a/profiles/applications/awesome.py b/profiles/applications/awesome.py
index d5a8e793..33526fd7 100644
--- a/profiles/applications/awesome.py
+++ b/profiles/applications/awesome.py
@@ -1,6 +1,16 @@
import archinstall
-__packages__ = ["awesome", "xorg-xrandr", "xterm", "feh", "slock", "terminus-font", "gnu-free-fonts", "ttf-liberation", "xsel"]
+__packages__ = [
+ "awesome",
+ "xorg-xrandr",
+ "xterm",
+ "feh",
+ "slock",
+ "terminus-font",
+ "gnu-free-fonts",
+ "ttf-liberation",
+ "xsel",
+]
archinstall.storage['installation_session'].install_profile('xorg')
diff --git a/profiles/applications/cockpit.py b/profiles/applications/cockpit.py
index 8a0ede9d..d8aa0fd1 100644
--- a/profiles/applications/cockpit.py
+++ b/profiles/applications/cockpit.py
@@ -2,7 +2,11 @@ import archinstall
# Define the package list in order for lib to source
# which packages will be installed by this profile
-__packages__ = ["cockpit", "udisks2", "packagekit"]
+__packages__ = [
+ "cockpit",
+ "udisks2",
+ "packagekit",
+]
archinstall.storage['installation_session'].add_additional_packages(__packages__)