Four corrections to the omarchy-settings transition: - bin/omarchy-update-system-pkgs: pass --overwrite for the 13 paths omarchy-settings now owns. Existing Omarchy installs would otherwise fail pacman conflict checks on the upgrade that ships the package (the files exist as unowned filesystem entries from the previous install scripts). The flags are no-ops once the transition release is everyone's baseline; remove then. - config/mimeapps.list: drop the HEY.desktop mailto mapping. HEY.desktop is generated by install/packaging/webapps.sh at install time, not shipped under applications/, so it isn't valid for a fresh /etc/skel user before the installer runs. - install/config/mimetypes.sh: add 'xdg-mime default HEY.desktop x-scheme-handler/mailto' as a runtime op since the mapping no longer lives in mimeapps.list. - install/config/increase-lockout-limit.sh: delete existing pam_faillock.so authsucc lines before re-adding, so re-running the installer doesn't duplicate the authsucc entry in /etc/pam.d/sddm-autologin.
11 lines
628 B
Bash
11 lines
628 B
Bash
# Most MIME default mappings now ship as config/mimeapps.list (via /etc/skel
|
|
# for new users; existing users keep their own). This script handles the
|
|
# runtime side: refresh applications, set Chromium as the system default web
|
|
# browser (omarchy-install-browser overrides if the user picks something
|
|
# else later), and wire HEY.desktop as the mailto handler — HEY.desktop is
|
|
# generated by install/packaging/webapps.sh at install time so it can't
|
|
# live in /etc/skel/.config/mimeapps.list.
|
|
omarchy-refresh-applications
|
|
xdg-settings set default-web-browser chromium.desktop
|
|
xdg-mime default HEY.desktop x-scheme-handler/mailto
|