xorg: user configs are now loaded automatically

master
tiyn 6 days ago
parent 198144476c
commit da9fdab952

@ -1,9 +1,9 @@
[Appearance] [Appearance]
color_scheme_path=/usr/share/qt6ct/colors/darker.conf color_scheme_path=/usr/share/qt6ct/colors/darker.conf
custom_palette=false custom_palette=true
icon_theme=breeze-dark icon_theme=breeze-dark
standard_dialogs=default standard_dialogs=default
style=Adwaita-Dark style=Breeze
[Fonts] [Fonts]
fixed="Linux Biolinum,12,-1,5,400,0,0,0,0,0,0,0,0,0,0,1" 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 wheel_scroll_lines=3
[SettingsWindow] [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] [Troubleshooting]
force_raster_widgets=1 force_raster_widgets=1

@ -1,13 +1,13 @@
#!/bin/sh #!/bin/sh
xset r rate 300 50 & # Speed xrate up xset r rate 300 50 & # Speed xrate up
unclutter & # Remove mouse when idle unclutter & # Remove mouse when idle
dunst & # dunst for notifications dunst & # dunst for notifications
redshift & # redshift for saving your eyes redshift & # redshift for saving your eyes
$STATUSBAR & # for refreshing the statusbar $STATUSBAR & # for refreshing the statusbar
xcompmgr & # compositor for transparency xcompmgr & # compositor for transparency
sxhkd & # for shortcuts sxhkd & # for shortcuts
(sleep 10 ; pkill -RTMIN+4 $STATUSBAR) & # reload volume section of statusbar (sleep 10 ; pkill -RTMIN+4 $STATUSBAR) & # reload volume section of statusbar
dunstctl rule dnd_low disable & # disable dnd for low urgencies dunstctl rule dnd_low disable & # disable dnd for low urgencies
dunstctl rule dnd_normal disable & # disable dnd for normal urgencies dunstctl rule dnd_normal disable & # disable dnd for normal urgencies
easyeffects --gapplication-service & # start audio server easyeffects --gapplication-service & # start audio server

@ -1,5 +1,12 @@
#!/bin/sh #!/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 xrandr --auto
[ -f "$HOME/.config/xorg/xprofile" ] && . "$HOME/.config/xorg/xprofile" # global autostart [ -f "$HOME/.config/xorg/xprofile" ] && . "$HOME/.config/xorg/xprofile" # global autostart

Loading…
Cancel
Save