2023-09-06 10:37:27 +00:00
|
|
|
#!/bin/sh
|
|
|
|
. "$HOME/.profile"
|
2023-09-06 11:12:47 +00:00
|
|
|
xset b off # Disable the audible bell.
|
2023-09-06 10:37:27 +00:00
|
|
|
xrandr --dpi 96 # Set the fonts to the normal DPI.
|
|
|
|
xrdb -load "$HOME/.Xresources"
|
2023-09-11 19:41:02 +00:00
|
|
|
if [ -x /usr/local/bin/piconf ]
|
|
|
|
then
|
|
|
|
/usr/local/bin/piconf -b
|
|
|
|
fi
|
|
|
|
if [ -x /usr/local/bin/hsetroot ]
|
|
|
|
then
|
|
|
|
/usr/local/bin/hsetroot -solid steelblue
|
|
|
|
fi
|
2023-09-06 10:37:27 +00:00
|
|
|
exec icewm-session
|