diff options
| -rwxr-xr-x | archsetup | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -865,6 +865,9 @@ user_customizations() { fi fi + # install fontconfig before refreshing cache (provides fc-cache) + pacman_install fontconfig + # Refresh font cache for any fonts in dotfiles action="refreshing font cache" && display "task" "$action" fc-cache -f >> "$logfile" 2>&1 || error_warn "$action" "$?" @@ -877,6 +880,9 @@ user_customizations() { (sudo -u "$username" update-desktop-database "/home/$username/.local/share/applications" \ >> "$logfile" 2>&1 ) || true + # install dconf before writing GTK/GNOME desktop settings (provides dconf) + pacman_install dconf + # GTK file chooser settings (stored in dconf, can't be stowed) action="configuring GTK file chooser" && display "task" "$action" (sudo -u "$username" dbus-launch dconf write /org/gtk/settings/file-chooser/sort-directories-first true \ |
