HotdogLinux

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

   1 git clone https://github.com/arthurchoung/HOTDOG.git 
   2 cd HOTDOG
   3 sh makeUtils.sh
   4 perl build.pl
   5 
   6 
   7 sudo nano /etc/X11/xinit/xinitrc.xterm
   8 xwmconfig
   9 # choose xterm one 
  10 
  11 # To run the window manager:
  12 ./hotdog runWindowManager
  13 # To run the iPod style interface:
  14 ./hotdog

/etc/X11/xinit/xinitrc.xterm

   1 #!/bin/sh
   2 userresources=$HOME/.Xresources
   3 usermodmap=$HOME/.Xmodmap
   4 sysresources=/etc/X11/xinit/.Xresources
   5 sysmodmap=/etc/X11/xinit/.Xmodmap
   6 
   7 # merge in defaults and keymaps
   8 
   9 if [ -f $sysresources ]; then
  10     /usr/bin/xrdb -merge $sysresources
  11 fi
  12 
  13 if [ -f $sysmodmap ]; then
  14     /usr/bin/xmodmap $sysmodmap
  15 fi
  16 
  17 if [ -f $userresources ]; then
  18     /usr/bin/xrdb -merge $userresources
  19 fi
  20 
  21 if [ -f $usermodmap ]; then
  22     /usr/bin/xmodmap $usermodmap
  23 fi
  24 
  25 # start some nice programs
  26 exec /usr/bin/xterm

HotdogLinux (last edited 2023-11-22 22:16:12 by vitor)