This is an ~/.xsession script I have used to run twm (Tom's Window Manager) on my home FreeBSD box. It sets up screen resolution and starts some IRC client, clock and terminal with Z Shell.
#!/bin/sh
xrandr --size 1920x1080
xrandr --dpi 96
exec xterm\
-geometry 100x50-0+0\
-T 'Z Shell'\
-e sh\
-c "cat softlist; ${SHELL:-sh}" &
exec xclock -update 1 -chime -geometry 70x70+0-0 &
exec pidgin &
exec twm
That's enough for me :)
Комментариев нет:
Отправить комментарий