create qt configuration files if it doesn't exist #11

Merged
tio merged 2 commits from rokosun-patch-1 into main 2022-09-22 15:02:42 +00:00
Showing only changes of commit 1a56d813dd - Show all commits

View File

@ -20,8 +20,13 @@ while read -r line; do
# Get the current icon theme
icon_theme=$(xfconf-query -c xsettings -p /Net/IconThemeName)
# Apply the same theme in qt5ct and qt6ct configuration
sed -i "s/^icon_theme=.*$/icon_theme=$icon_theme/" "$HOME"/.config/qt5ct/qt5ct.conf
sed -i "s/^icon_theme=.*$/icon_theme=$icon_theme/" "$HOME"/.config/qt6ct/qt6ct.conf
for file in "$HOME"/.config/qt5ct/qt5ct.conf "$HOME"/.config/qt6ct/qt6ct.conf; do
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
'set: /Gtk/FontName')