xorg: user configs are now loaded automatically

master
tiyn 6 days ago
parent 198144476c
commit da9fdab952

@ -1,9 +1,9 @@
[Appearance]
color_scheme_path=/usr/share/qt6ct/colors/darker.conf
custom_palette=false
custom_palette=true
icon_theme=breeze-dark
standard_dialogs=default
style=Adwaita-Dark
style=Breeze
[Fonts]
fixed="Linux Biolinum,12,-1,5,400,0,0,0,0,0,0,0,0,0,0,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\n\0\0\0\x1\x42\0\0\x11\x7f\0\0\x5\x63\0\0\n\0\0\0\x1\x42\0\0\x11\x7f\0\0\x5\x63\0\0\0\x1\0\0\0\0\a\x80\0\0\n\0\0\0\x1\x42\0\0\x11\x7f\0\0\x5\x63)
geometry=@ByteArray(\x1\xd9\xd0\xcb\0\x3\0\0\0\0\0\0\0\0\0\x16\0\0\t\xff\0\0\x5\x9f\0\0\0\0\0\0\0\x16\0\0\t\xff\0\0\x5\x9f\0\0\0\0\0\0\0\0\n\0\0\0\0\0\0\0\0\x16\0\0\t\xff\0\0\x5\x9f)
[Troubleshooting]
force_raster_widgets=1

@ -1,5 +1,12 @@
#!/bin/sh
if [ -d /etc/X11/xinit/xinitrc.d ] ; then
for f in /etc/X11/xinit/xinitrc.d/?*.sh ; do
[ -x "$f" ] && . "$f"
done
unset f
fi
xrandr --auto
[ -f "$HOME/.config/xorg/xprofile" ] && . "$HOME/.config/xorg/xprofile" # global autostart

Loading…
Cancel
Save