fixed Qt5 theme config
This commit is contained in:
@@ -1,13 +1,13 @@
|
|||||||
[Appearance]
|
[Appearance]
|
||||||
color_scheme_path=/usr/share/qt6ct/colors/airy.conf
|
color_scheme_path=/usr/share/qt5ct/colors/airy.conf
|
||||||
custom_palette=false
|
custom_palette=false
|
||||||
icon_theme=Papirus-Dark
|
icon_theme=Papirus-Dark
|
||||||
standard_dialogs=default
|
standard_dialogs=default
|
||||||
style=Adwaita-Dark
|
style=Adwaita-Dark
|
||||||
|
|
||||||
[Fonts]
|
[Fonts]
|
||||||
fixed="Monospace,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,400,0,0,0,0,0,0,0,0,0,0,1"
|
general="Sans Serif,10,-1,5,50,0,0,0,0,0"
|
||||||
|
|
||||||
[Interface]
|
[Interface]
|
||||||
activate_item_on_single_click=1
|
activate_item_on_single_click=1
|
||||||
@@ -25,7 +25,7 @@ underline_shortcut=1
|
|||||||
wheel_scroll_lines=3
|
wheel_scroll_lines=3
|
||||||
|
|
||||||
[SettingsWindow]
|
[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]
|
[Troubleshooting]
|
||||||
force_raster_widgets=1
|
force_raster_widgets=1
|
||||||
|
|||||||
@@ -14,12 +14,17 @@ if [ $? -ne 0 ]; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
# Copy user config files
|
# Copy user config files
|
||||||
if [ ! -d ~/.config ]; then
|
|
||||||
mkdir ~/.config
|
|
||||||
fi
|
|
||||||
cp -r config/* ~/.config
|
|
||||||
|
|
||||||
if [ ! -d /etc/skel/.config ]; then
|
if [ ! -d /etc/skel/.config ]; then
|
||||||
mkdir /etc/skel/.config
|
mkdir /etc/skel/.config
|
||||||
fi
|
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
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user