create qt configuration files if it doesn't exist

This commit is contained in:
Rokosun 2022-09-21 19:56:17 +02:00
parent cc045e6a93
commit 1a56d813dd

View File

@ -20,8 +20,13 @@ while read -r line; do
# Get the current icon theme # Get the current icon theme
icon_theme=$(xfconf-query -c xsettings -p /Net/IconThemeName) icon_theme=$(xfconf-query -c xsettings -p /Net/IconThemeName)
# Apply the same theme in qt5ct and qt6ct configuration # Apply the same theme in qt5ct and qt6ct configuration
sed -i "s/^icon_theme=.*$/icon_theme=$icon_theme/" "$HOME"/.config/qt5ct/qt5ct.conf for file in "$HOME"/.config/qt5ct/qt5ct.conf "$HOME"/.config/qt6ct/qt6ct.conf; do
sed -i "s/^icon_theme=.*$/icon_theme=$icon_theme/" "$HOME"/.config/qt6ct/qt6ct.conf if [ -f "$file" ]; then
sed -i "s/^icon_theme=.*$/icon_theme=$icon_theme/" "$file"
else
printf '[Appearance]\nicon_theme=%s\nstyle=gtk2\n' "$icon_theme" > "$file"
fi
done
;; ;;
# When the system font has been changed # When the system font has been changed
'set: /Gtk/FontName') 'set: /Gtk/FontName')