2023-09-11 19:57:00 +00:00
|
|
|
#!/bin/sh
|
2023-09-12 17:53:13 +00:00
|
|
|
xset b off # Disable the audible bell.
|
|
|
|
xrandr --dpi 96 # Set the fonts to the normal DPI.
|
|
|
|
xrdb -load "$HOME/.Xresources"
|
2024-04-22 14:37:51 +00:00
|
|
|
if test -r $HOME/.Xresources.local
|
|
|
|
then
|
|
|
|
xrdb -override $HOME/.Xresources.local
|
|
|
|
fi
|
2023-10-02 21:06:05 +00:00
|
|
|
|
2023-09-12 17:53:13 +00:00
|
|
|
if [ -x /usr/local/bin/picom ]
|
|
|
|
then
|
|
|
|
/usr/local/bin/picom -b
|
|
|
|
fi
|
2023-10-02 21:06:05 +00:00
|
|
|
|
2023-09-11 19:57:00 +00:00
|
|
|
if [ -x /usr/local/bin/hsetroot ]
|
|
|
|
then
|
2023-09-11 20:04:30 +00:00
|
|
|
sleep 1
|
2023-10-01 20:23:42 +00:00
|
|
|
/usr/local/bin/hsetroot -solid "rgb:10/10/10"
|
2023-09-11 19:57:00 +00:00
|
|
|
fi
|
2023-10-02 21:06:05 +00:00
|
|
|
|
|
|
|
if [ -x /usr/local/libexec/gsd-xsettings ]
|
|
|
|
then
|
|
|
|
/usr/local/libexec/gsd-xsettings &
|
|
|
|
elif [ -x /usr/libexec/gsd-xsettings ]
|
|
|
|
then
|
|
|
|
/usr/libexec/gsd-xsettings &
|
|
|
|
fi
|
|
|
|
|
2023-09-11 19:57:00 +00:00
|
|
|
return 0
|