workstation/roles/home-gui/files/icewm/startup

15 lines
308 B
Text
Raw Normal View History

2023-09-11 19:57:00 +00:00
#!/bin/sh
xset b off # Disable the audible bell.
xrandr --dpi 96 # Set the fonts to the normal DPI.
xrdb -load "$HOME/.Xresources"
if [ -x /usr/local/bin/picom ]
then
/usr/local/bin/picom -b
fi
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-09-11 19:57:00 +00:00
/usr/local/bin/hsetroot -solid steelblue
fi
return 0