fixed Qt5 theme config

This commit is contained in:
julien
2025-09-23 19:52:23 +02:00
parent f3cdbcdc8c
commit 36e0ea88a0
2 changed files with 15 additions and 10 deletions

View File

@@ -1,13 +1,13 @@
[Appearance]
color_scheme_path=/usr/share/qt6ct/colors/airy.conf
color_scheme_path=/usr/share/qt5ct/colors/airy.conf
custom_palette=false
icon_theme=Papirus-Dark
standard_dialogs=default
style=Adwaita-Dark
[Fonts]
fixed="Monospace,10,-1,5,400,0,0,0,0,0,0,0,0,0,0,1"
general="Sans Serif,10,-1,5,400,0,0,0,0,0,0,0,0,0,0,1"
fixed="Monospace,10,-1,5,50,0,0,0,0,0"
general="Sans Serif,10,-1,5,50,0,0,0,0,0"
[Interface]
activate_item_on_single_click=1
@@ -25,7 +25,7 @@ underline_shortcut=1
wheel_scroll_lines=3
[SettingsWindow]
geometry=@ByteArray(\x1\xd9\xd0\xcb\0\x3\0\0\0\0\x3\xf6\0\0\x1\x33\0\0\x6\xde\0\0\x4\x3\0\0\x3\xfb\0\0\x1P\0\0\x6\xd9\0\0\x3\xfe\0\0\0\0\0\0\0\0\a\x80\0\0\x3\xfb\0\0\x1P\0\0\x6\xd9\0\0\x3\xfe)
geometry=@ByteArray(\x1\xd9\xd0\xcb\0\x3\0\0\0\0\x2Y\0\0\0\xf9\0\0\x5\xa6\0\0\x3\xfa\0\0\x2^\0\0\x1\x16\0\0\x5\xa1\0\0\x3\xf5\0\0\0\0\0\0\0\0\a\x80\0\0\x2^\0\0\x1\x16\0\0\x5\xa1\0\0\x3\xf5)
[Troubleshooting]
force_raster_widgets=1

View File

@@ -14,12 +14,17 @@ if [ $? -ne 0 ]; then
fi
# Copy user config files
if [ ! -d ~/.config ]; then
mkdir ~/.config
fi
cp -r config/* ~/.config
if [ ! -d /etc/skel/.config ]; then
mkdir /etc/skel/.config
fi
cp -r config/* /etc/skel/.config
cp -r config/. /etc/skel/.config
for f in /home/*
do
if [ ! -d $f/.config ]; then
mkdir $f/.config
fi
cp -r config/. $f/.config
chown -R ${f##*/}:${f##*/} $f/.config
done