14 lines
325 B
Bash
Executable file
14 lines
325 B
Bash
Executable file
#!/bin/sh
|
|
. "$HOME/.profile"
|
|
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
|
|
if [ -x /usr/local/bin/hsetroot ]
|
|
then
|
|
/usr/local/bin/hsetroot -solid steelblue
|
|
fi
|
|
exec icewm-session
|