Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/profiles/kde.py
diff options
context:
space:
mode:
Diffstat (limited to 'profiles/kde.py')
-rw-r--r--profiles/kde.py14
1 files changed, 5 insertions, 9 deletions
diff --git a/profiles/kde.py b/profiles/kde.py
index d1174923..89ff236f 100644
--- a/profiles/kde.py
+++ b/profiles/kde.py
@@ -1,6 +1,6 @@
# A desktop environment using "KDE".
-import archinstall, os
+import archinstall, os, shutil
# TODO: Remove hard dependency of bash (due to .bash_profile)
@@ -22,15 +22,11 @@ def _prep_function(*args, **kwargs):
def _post_install(*args, **kwargs):
if "nvidia" in _gfx_driver_packages:
- print("Plasma wayland is currently in a buggy state on Nvidia cards")
- choice = input("Kde plasma has a wayland support would you like to install the required binaries [Y/n] ").lower()
+ print("Plasma wayland is currently in an unusable state on Nvidia cards")
+ choice = input("Would you like plasma-wayland to be the default session [Y/n] ").lower()
if choice == "y":
- packages = "plasma-wayland-session"
- # if the package selection can be reduced go for it
- if "nvidia" in _gfx_driver_packages:
- packages = packages + " egl-wayland"
- installation.add_additional_packages(packages)
-
+ shutil.move("/usr/share/xsessions/plasma.desktop","/usr/share/xsessions/plasmax11.desktop")
+ shutil.move("/usr/share/wayland-sessions/plasmawayland.desktop","/usr/share/wayland-sessions/plasma.desktop")
# Ensures that this code only gets executed if executed
# through importlib.util.spec_from_file_location("kde", "/somewhere/kde.py")
# or through conventional import kde