#!/bin/sh # $XConsortium: xinitrc.cpp,v 1.4 91/08/22 11:41:34 rws Exp $ userresources=$HOME/.Xresources usermodmap=$HOME/.Xmodmap sysresources=/usr/X11R6/lib/X11/xinit/.Xresources sysmodmap=/usr/X11R6/lib/X11/xinit/.Xmodmap # merge in defaults and keymaps if [ -f $sysresources ]; then xrdb -merge $sysresources fi if [ -f $sysmodmap ]; then xmodmap $sysmodmap fi if [ -f $userresources ]; then xrdb -merge $userresources fi if [ -f $usermodmap ]; then xmodmap $usermodmap fi # start some nice programs # xsetroot -bitmap pictures/root.xbm xterm -sb -C -n "CONSOLE" -cr yellow -bg black -fg LightYellow -g 65x6-12+8 & xterm -sb -n "XTERM #1" -cr yellow -fg white -g 80x25-1+47 & xterm -sb -n "XTERM #2" -cr yellow -bg navy -fg green -g 80x25-3-4 & xterm -sb -n "XTERM #3" -cr yellow -fg lightgoldenrodyellow -g 80x25+1-3 & oclock -minute lightgoldenrod -hour goldenrod1 -bg navyblue -jewel white -bd pink1 -g 84x81+78+-2 & #xclock -analog -chime -hands yellow -hl yellow -fg white -bg navyblue -padding 3 -g 84x81+1+1 & xeyes -outline navyblue -fg black -center lightgoldenrodyellow -g 78x78+172+1 & xload -jumpscroll 1 -nolabel -update 5 -bg navyblue -fg Yellow -g 71x62+268+10 & xv pictures/mirage2.gif -max -root -quit& cat audio/tada.wav > /dev/dsp & fvwm cat audio/chimes.wav > /dev/dsp