Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/profiles
diff options
context:
space:
mode:
authorDylan Taylor <dylan@dylanmtaylor.com>2021-05-15 17:28:27 -0400
committerDylan Taylor <dylan@dylanmtaylor.com>2021-05-15 17:30:20 -0400
commit3ee38afce1d8f3680245293f8f97353054afd52a (patch)
tree21aa0bf03bb61855728712927a9a7a13bf7d635c /profiles
parent0e5b0edd6c722351ef6ef35d7bd4bb6036ef1019 (diff)
One package per line formatting in profiles - easier to read/maintain
Diffstat (limited to 'profiles')
-rw-r--r--profiles/applications/awesome.py12
-rw-r--r--profiles/awesome.py7
-rw-r--r--profiles/budgie.py7
-rw-r--r--profiles/deepin.py8
-rw-r--r--profiles/enlightenment.py7
-rw-r--r--profiles/gnome.py6
-rw-r--r--profiles/i3.py10
-rw-r--r--profiles/kde.py10
-rw-r--r--profiles/lxqt.py11
-rw-r--r--profiles/server.py12
-rw-r--r--profiles/xorg.py9
11 files changed, 88 insertions, 11 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/awesome.py b/profiles/awesome.py
index aa4702a6..0c1b20ea 100644
--- a/profiles/awesome.py
+++ b/profiles/awesome.py
@@ -6,7 +6,12 @@ is_top_level_profile = False
# New way of defining packages for a profile, which is iterable and can be used out side
# of the profile to get a list of "what packages will be installed".
-__packages__ = ['nemo', 'gpicview', 'main', 'alacritty']
+__packages__ = [
+ "nemo",
+ "gpicview",
+ "main",
+ "alacritty",
+]
def _prep_function(*args, **kwargs):
diff --git a/profiles/budgie.py b/profiles/budgie.py
index abaf87b0..3e4a85df 100644
--- a/profiles/budgie.py
+++ b/profiles/budgie.py
@@ -5,7 +5,12 @@ import archinstall
is_top_level_profile = False
# "It is recommended also to install the gnome group, which contains applications required for the standard GNOME experience." - Arch Wiki
-__packages__ = ["budgie-desktop", "lightdm", "lightdm-gtk-greeter", "gnome"]
+__packages__ = [
+ "budgie-desktop",
+ "gnome",
+ "lightdm",
+ "lightdm-gtk-greeter",
+]
def _prep_function(*args, **kwargs):
diff --git a/profiles/deepin.py b/profiles/deepin.py
index ebe730e2..5bc18285 100644
--- a/profiles/deepin.py
+++ b/profiles/deepin.py
@@ -4,7 +4,13 @@ import archinstall
is_top_level_profile = False
-__packages__ = ["deepin", "deepin-terminal", "deepin-editor", "lightdm", "lightdm-gtk-greeter"]
+__packages__ = [
+ "deepin",
+ "deepin-terminal",
+ "deepin-editor",
+ "lightdm",
+ "lightdm-gtk-greeter",
+]
def _prep_function(*args, **kwargs):
diff --git a/profiles/enlightenment.py b/profiles/enlightenment.py
index cfb97836..3850fed0 100644
--- a/profiles/enlightenment.py
+++ b/profiles/enlightenment.py
@@ -4,7 +4,12 @@ import archinstall
is_top_level_profile = False
-__packages__ = ["enlightenment", "terminology", "lightdm", "lightdm-gtk-greeter"]
+__packages__ = [
+ "enlightenment",
+ "terminology",
+ "lightdm",
+ "lightdm-gtk-greeter",
+]
def _prep_function(*args, **kwargs):
diff --git a/profiles/gnome.py b/profiles/gnome.py
index 7bf5b7fd..1b3bf327 100644
--- a/profiles/gnome.py
+++ b/profiles/gnome.py
@@ -5,7 +5,11 @@ import archinstall
is_top_level_profile = False
# Note: GDM should be part of the gnome group, but adding it here for clarity
-__packages__ = ["gnome", "gnome-tweaks", "gdm"]
+__packages__ = [
+ "gnome",
+ "gnome-tweaks",
+ "gdm",
+]
def _prep_function(*args, **kwargs):
diff --git a/profiles/i3.py b/profiles/i3.py
index c25003f9..b26745a1 100644
--- a/profiles/i3.py
+++ b/profiles/i3.py
@@ -6,7 +6,15 @@ is_top_level_profile = False
# New way of defining packages for a profile, which is iterable and can be used out side
# of the profile to get a list of "what packages will be installed".
-__packages__ = ['i3lock', 'i3status', 'i3blocks', 'xterm', 'lightdm-gtk-greeter', 'lightdm', 'dmenu']
+__packages__ = [
+ 'i3lock',
+ 'i3status',
+ 'i3blocks',
+ 'xterm',
+ 'lightdm-gtk-greeter',
+ 'lightdm',
+ 'dmenu',
+]
def _prep_function(*args, **kwargs):
diff --git a/profiles/kde.py b/profiles/kde.py
index 451704b9..c58f4f45 100644
--- a/profiles/kde.py
+++ b/profiles/kde.py
@@ -4,7 +4,15 @@ import archinstall
is_top_level_profile = False
-__packages__ = ["plasma-meta", "konsole", "kate", "dolphin", "sddm", "plasma-wayland-session", "egl-wayland"]
+__packages__ = [
+ "plasma-meta",
+ "konsole",
+ "kate",
+ "dolphin",
+ "sddm",
+ "plasma-wayland-session",
+ "egl-wayland",
+]
# TODO: Remove hard dependency of bash (due to .bash_profile)
diff --git a/profiles/lxqt.py b/profiles/lxqt.py
index af6337e6..a241353a 100644
--- a/profiles/lxqt.py
+++ b/profiles/lxqt.py
@@ -4,7 +4,16 @@ import archinstall
is_top_level_profile = False
-__packages__ = ["lxqt", "breeze-icons", "oxygen-icons", "xdg-utils", "ttf-freefont", "leafpad", "slock", "sddm"]
+__packages__ = [
+ "lxqt",
+ "breeze-icons",
+ "oxygen-icons",
+ "xdg-utils",
+ "ttf-freefont",
+ "leafpad",
+ "slock",
+ "sddm",
+]
def _prep_function(*args, **kwargs):
diff --git a/profiles/server.py b/profiles/server.py
index 355be9f5..704c8efe 100644
--- a/profiles/server.py
+++ b/profiles/server.py
@@ -6,7 +6,17 @@ import archinstall
is_top_level_profile = True
-available_servers = ["cockpit", "docker", "httpd", "lighttpd", "mariadb", "nginx", "postgresql", "sshd", "tomcat"]
+available_servers = [
+ "cockpit",
+ "docker",
+ "httpd",
+ "lighttpd",
+ "mariadb",
+ "nginx",
+ "postgresql",
+ "sshd",
+ "tomcat",
+]
def _prep_function(*args, **kwargs):
diff --git a/profiles/xorg.py b/profiles/xorg.py
index e18a4f03..b8fb2cbb 100644
--- a/profiles/xorg.py
+++ b/profiles/xorg.py
@@ -4,7 +4,14 @@ import archinstall
is_top_level_profile = True
-__packages__ = ['dkms', 'xorg-server', 'xorg-xinit', 'nvidia-dkms', 'xorg-server', *archinstall.lib.hardware.__packages__]
+__packages__ = [
+ 'dkms',
+ 'xorg-server',
+ 'xorg-xinit',
+ 'nvidia-dkms',
+ 'xorg-server',
+ *archinstall.lib.hardware.__packages__,
+]
def _prep_function(*args, **kwargs):