From 36e0ea88a0fd3820ee94add2776d13a379e26001 Mon Sep 17 00:00:00 2001 From: julien Date: Tue, 23 Sep 2025 19:52:23 +0200 Subject: [PATCH] fixed Qt5 theme config --- config/qt5ct/qt5ct.conf | 8 ++++---- modules/desktop.sh | 17 +++++++++++------ 2 files changed, 15 insertions(+), 10 deletions(-) diff --git a/config/qt5ct/qt5ct.conf b/config/qt5ct/qt5ct.conf index d32e476..79fbb9d 100644 --- a/config/qt5ct/qt5ct.conf +++ b/config/qt5ct/qt5ct.conf @@ -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 diff --git a/modules/desktop.sh b/modules/desktop.sh index b448c80..3d228a0 100755 --- a/modules/desktop.sh +++ b/modules/desktop.sh @@ -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 +