= HotdogLinux =
 * http://hotdoglinux.com/
Graphical user interface based on retro computer systems including Windows 3.1 Hot Dog Stand, Amiga Workbench, Atari ST GEM, and Mac Classic and Aqua 

== Compile and run ==
{{{#!highlight sh
git clone https://github.com/arthurchoung/HOTDOG.git 
cd HOTDOG
sh makeUtils.sh
perl build.pl


sudo nano /etc/X11/xinit/xinitrc.xterm
xwmconfig
# choose xterm one 

# To run the window manager:
./hotdog runWindowManager
# To run the iPod style interface:
./hotdog
}}}

== /etc/X11/xinit/xinitrc.xterm ==
{{{#!highlight sh
#!/bin/sh
userresources=$HOME/.Xresources
usermodmap=$HOME/.Xmodmap
sysresources=/etc/X11/xinit/.Xresources
sysmodmap=/etc/X11/xinit/.Xmodmap

# merge in defaults and keymaps

if [ -f $sysresources ]; then
    /usr/bin/xrdb -merge $sysresources
fi

if [ -f $sysmodmap ]; then
    /usr/bin/xmodmap $sysmodmap
fi

if [ -f $userresources ]; then
    /usr/bin/xrdb -merge $userresources
fi

if [ -f $usermodmap ]; then
    /usr/bin/xmodmap $usermodmap
fi

# start some nice programs
exec /usr/bin/xterm
}}}