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 12:07:46 -0400
committerDylan Taylor <dylan@dylanmtaylor.com>2021-05-15 12:07:46 -0400
commit37e818b3d1a7b76d1bdc511876a2a30d7a7a32d1 (patch)
tree75e11aeefd8f16ee70d04eb3d8d2e1003304390b /profiles
parentd93ef24e8e080ab4c71366bfba0340d16f17524b (diff)
More manual fixes
Diffstat (limited to 'profiles')
-rw-r--r--profiles/52-54-00-12-34-56.py6
-rw-r--r--profiles/awesome.py6
2 files changed, 6 insertions, 6 deletions
diff --git a/profiles/52-54-00-12-34-56.py b/profiles/52-54-00-12-34-56.py
index d4fc3d07..758a4cc2 100644
--- a/profiles/52-54-00-12-34-56.py
+++ b/profiles/52-54-00-12-34-56.py
@@ -1,6 +1,6 @@
import archinstall
-import json
-import urllib.request
+# import json
+# import urllib.request
__packages__ = ['nano', 'wget', 'git']
@@ -27,7 +27,7 @@ with archinstall.Filesystem(harddrive) as fs:
with archinstall.luks2(harddrive.partition[1], 'luksloop', disk_password) as unlocked_device:
unlocked_device.format('btrfs')
-
+
with archinstall.Installer(
unlocked_device,
boot_partition=harddrive.partition[0],
diff --git a/profiles/awesome.py b/profiles/awesome.py
index 62cb9e00..aa4702a6 100644
--- a/profiles/awesome.py
+++ b/profiles/awesome.py
@@ -40,14 +40,14 @@ if __name__ == 'awesome':
with open(f"{archinstall.storage['installation_session'].target}/etc/xdg/awesome/rc.lua", 'r') as fh:
awesome_lua = fh.read()
- ## Replace xterm with alacritty for a smoother experience.
+ # Replace xterm with alacritty for a smoother experience.
awesome_lua = awesome_lua.replace('"xterm"', '"alacritty"')
with open(f"{archinstall.storage['installation_session'].target}/etc/xdg/awesome/rc.lua", 'w') as fh:
fh.write(awesome_lua)
- ## TODO: Configure the right-click-menu to contain the above packages that were installed. (as a user config)
+ # TODO: Configure the right-click-menu to contain the above packages that were installed. (as a user config)
- ## Remove some interfering nemo settings
+ # Remove some interfering nemo settings
archinstall.storage['installation_session'].arch_chroot("gsettings set org.nemo.desktop show-desktop-icons false")
archinstall.storage['installation_session'].arch_chroot("xdg-mime default nemo.desktop inode/directory application/x-gnome-saved-search")