diff options
author | Cullum Smith <cullum@sacredheartsc.com> | 2025-02-11 22:50:49 -0500 |
---|---|---|
committer | Cullum Smith <cullum@sacredheartsc.com> | 2025-02-11 22:50:49 -0500 |
commit | 7047f830acfe84e840403e69df161b9d51aca673 (patch) | |
tree | e444273e3412e677c74958468f274ed51f1aea4e /scripts/hostclass/desktop | |
parent | 21e42dd2db8d987dbd08a3254ff0719d577c005e (diff) | |
download | infrastructure-7047f830acfe84e840403e69df161b9d51aca673.tar.gz |
fixes for kde6 upgrade
Diffstat (limited to 'scripts/hostclass/desktop')
-rw-r--r-- | scripts/hostclass/desktop | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/scripts/hostclass/desktop b/scripts/hostclass/desktop index 8fdfca4..c85ef28 100644 --- a/scripts/hostclass/desktop +++ b/scripts/hostclass/desktop @@ -45,9 +45,9 @@ zfs set \ com.sun:auto-snapshot:weekly=true \ "${state_dataset}/home" -# Enable sndio. -sysrc -v sndiod_enable=YES -service sndiod status || service sndiod start +# Disable sndiod (not needed). +sysrc -v sndiod_enable=NO +service sndiod status && service sndiod stop # Create local group for desktop-access. # This is for *local* users that need access to the drm device. @@ -66,12 +66,12 @@ service webcamd status || service webcamd start install_file -m 0644 /usr/local/etc/xdg/autostart/nss-trust-root-ca.desktop install_file -m 0555 /usr/local/libexec/nss-trust-root-ca -# Install gajim desktop file. -install_file -m 0644 /usr/local/share/applications/gajim.desktop - # Add sddm user to drm access group. pw groupmod "$desktop_access_role" -m "$sddm_user" +# Install gajim desktop file. +install_file -m 0644 /usr/local/share/applications/gajim.desktop + # Configure pam services. install_file -m 0644 \ /etc/pam.d/sddm \ |