git.y1.nz

fbui

Framebuffer-based graphical environment
download: https://git.y1.nz/archives/fbui.tar.gz
README | Files | Log | Refs

libfbui/install.sh

      1 #!/bin/sh
      2 
      3 if [ $UID != 0 ]
      4 then echo "You must be root to install!"; exit
      5 fi
      6 
      7 DIRS="Clock ToDo Term LoadMonitor Viewer MailCheck Dump WindowManager PanelManager"
      8 
      9 for DIR in $DIRS
     10 do
     11 cd $DIR
     12 make install
     13 cd ..
     14 done
     15 
     16 

This webpage is intended to be an accessible preview of this repository. To get a fuller picture, clone it and use the git CLI.