From 3e1027b3b7783786276940489432f2996eb00dd3 Mon Sep 17 00:00:00 2001 From: Randall Winkhart Date: Wed, 1 Oct 2025 20:12:00 -0400 Subject: [PATCH] Always install wl-clipboard and qt6-wayland --- universalTweaks.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/universalTweaks.go b/universalTweaks.go index ad3cac5..0a73ed1 100644 --- a/universalTweaks.go +++ b/universalTweaks.go @@ -10,4 +10,7 @@ func universalTweaks() { // Force disable kernel watchdog (kernel parameters should do this as well) writeFile(mountPoint+"/etc/modprobe.d/blacklist.conf", "# Disable kernel watchdog\nblacklist iTCO_wdt\n", "root", 0644) + + // Install essential packages + managePackages("-S", []string{"wl-clipboard", "qt6-wayland"}) }