Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/profiles
diff options
context:
space:
mode:
authorAnton Hvornum <anton.feeds+github@gmail.com>2020-09-30 20:47:28 +0200
committerAnton Hvornum <anton.feeds+github@gmail.com>2020-09-30 20:47:28 +0200
commitcf3ccb478894d74a1e59980a23123cb8db191af3 (patch)
tree9fc57a3a94a459f8fd3890bd28428af4b7b361b4 /profiles
parent6b93650bfd751c17d455e1688109492523cd0df6 (diff)
Cleaned up the awesome wm profile. A few things were test purpose-addons that shouldn't be in the default profile.
Diffstat (limited to 'profiles')
-rw-r--r--profiles/awesome.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/profiles/awesome.py b/profiles/awesome.py
index 7e8c759d..0ec6ec4d 100644
--- a/profiles/awesome.py
+++ b/profiles/awesome.py
@@ -31,7 +31,7 @@ if __name__ == 'awesome':
# Then setup and configure the desktop environment: awesome
arguments = {
- 'keyboard_layout' : 'sv-latin1',
+ #'keyboard_layout' : 'sv-latin1',
"editor" : "nano",
"mediaplayer" : "lollypop gstreamer gst-plugins-good gnome-keyring",
"filebrowser" : "nemo gpicview-gtk3",
@@ -44,12 +44,12 @@ if __name__ == 'awesome':
installation.add_additional_packages("{webbrowser} {utils} {mediaplayer} {window_manager} {virtulization} {filebrowser} {editor}".format(**arguments))
- with open(f'{installation.mountpoint}/etc/X11/xinit/xinitrc', 'a') as X11:
- X11.write('setxkbmap se\n')
+ #with open(f'{installation.mountpoint}/etc/X11/xinit/xinitrc', 'a') as X11:
+ # X11.write('setxkbmap se\n')
- with open(f'{installation.mountpoint}/etc/vconsole.conf', 'a') as vconsole:
- vconsole.write('KEYMAP={keyboard_layout}\n'.format(**arguments))
- vconsole.write('FONT=lat9w-16\n')
+ #with open(f'{installation.mountpoint}/etc/vconsole.conf', 'a') as vconsole:
+ # vconsole.write('KEYMAP={keyboard_layout}\n'.format(**arguments))
+ # vconsole.write('FONT=lat9w-16\n')
with open(f'{installation.mountpoint}/etc/xdg/awesome/rc.lua', 'r') as awesome_rc_lua: