fix motd, and icon creation error messages in setup

This commit is contained in:
Ivan X 2016-07-23 06:59:22 -05:00
parent 83a40d7af6
commit 40b55a599e
2 changed files with 20 additions and 5 deletions

View File

@ -1 +0,0 @@
motd-rpi.txt

16
setup/motd.txt Normal file
View File

@ -0,0 +1,16 @@
Welcome to A2CLOUD!
Instructions and help: http://appleii.ivanx.com
Type 'a2cloud-help' for a list of A2CLOUD commands.
Type 'system-shutdown' to turn off your Raspberry Pi.
Type 'raspi-config' to configure your Raspberry Pi.
Type 'startx' to start the Raspbian desktop.
Type 'lynx' or 'links' to browse the web and 'cftp' to log into FTP sites.
Type 'a2chat' or 'a2news' to talk about Apple II stuff with others.
Type 'ttytter' to tweet. Type 'term color' for a color terminal on a IIgs.
Type 'gsport' or 'kegs' to use the GSport or KEGS Apple IIgs emulators.
Type 'linapple' to use the LinApple Apple IIe emulator.

View File

@ -1282,20 +1282,20 @@ if [[ -f /usr/bin/X ]]; then
mkdir -p ~/Desktop mkdir -p ~/Desktop
# GSport: # GSport:
if [[ -f /usr/bin/gsport ]]; then if [[ -f /usr/bin/gsport ]]; then
echo -e "[Desktop Entry]\nName=GSport\nComment=Apple IIgs Emulator\nExec=lxterminal -e /usr/bin/gsport\nIcon=/usr/local/share/gsport32.ico\nTerminal=false\nType=Application\nCategories=AppleII\n" | sudo tee /usr/local/share/applications/gsport.desktop > ~/Desktop/gsport.desktop echo -e "[Desktop Entry]\nName=GSport\nComment=Apple IIgs Emulator\nExec=lxterminal -e /usr/bin/gsport\nIcon=/usr/local/share/gsport32.ico\nTerminal=false\nType=Application\nCategories=AppleII\n" | sudo tee /usr/share/raspi-ui-overrides/gsport.desktop > ~/Desktop/gsport.desktop
elif [[ -f /usr/local/bin/gsport ]]; then elif [[ -f /usr/local/bin/gsport ]]; then
echo -e "[Desktop Entry]\nName=GSport\nComment=Apple IIgs Emulator\nExec=lxterminal -e /usr/local/bin/gsport\nIcon=/usr/local/share/gsport32.ico\nTerminal=false\nType=Application\nCategories=AppleII\n" | sudo tee /usr/local/share/applications/gsport.desktop > ~/Desktop/gsport.desktop echo -e "[Desktop Entry]\nName=GSport\nComment=Apple IIgs Emulator\nExec=lxterminal -e /usr/local/bin/gsport\nIcon=/usr/local/share/gsport32.ico\nTerminal=false\nType=Application\nCategories=AppleII\n" | sudo tee /usr/share/raspi-ui-overrides/gsport.desktop > ~/Desktop/gsport.desktop
fi fi
if [[ ! -f /usr/local/share/gsport32.ico ]]; then if [[ ! -f /usr/local/share/gsport32.ico ]]; then
sudo wget -qO /usr/local/share/gsport32.ico ${binaryURL}gsport32.ico sudo wget -qO /usr/local/share/gsport32.ico ${binaryURL}gsport32.ico
fi fi
# LinApple: # LinApple:
if [[ -f /usr/local/bin/linapple ]]; then if [[ -f /usr/local/bin/linapple ]]; then
echo -e "[Desktop Entry]\nName=LinApple\nComment=Apple IIe Emulator\nExec=lxterminal -e /usr/local/bin/linapple\nIcon=/usr/local/linapple/icon.bmp\nTerminal=false\nType=Application\nCategories=AppleII\n" | sudo tee /usr/local/share/applications/linapple.desktop > ~/Desktop/linapple.desktop echo -e "[Desktop Entry]\nName=LinApple\nComment=Apple IIe Emulator\nExec=lxterminal -e /usr/local/bin/linapple\nIcon=/usr/local/linapple/icon.bmp\nTerminal=false\nType=Application\nCategories=AppleII\n" | sudo tee /usr/share/raspi-ui-overrides/linapple.desktop > ~/Desktop/linapple.desktop
fi fi
# ADTPro Server: # ADTPro Server:
if [[ -f /usr/local/bin/adtpro.sh ]]; then if [[ -f /usr/local/bin/adtpro.sh ]]; then
echo -e "[Desktop Entry]\nName=ADTPro Server\nComment=Floppy Transfer Utility\nExec=/usr/local/bin/adtpro.sh\nIcon=/usr/local/adtpro/lib/ADTPro.ico\nTerminal=false\nType=Application\nCategories=AppleII\n" | sudo tee /usr/local/share/applications/adtproserver.desktop > ~/Desktop/adtproserver.desktop echo -e "[Desktop Entry]\nName=ADTPro Server\nComment=Floppy Transfer Utility\nExec=/usr/local/bin/adtpro.sh\nIcon=/usr/local/adtpro/lib/ADTPro.ico\nTerminal=false\nType=Application\nCategories=AppleII\n" | sudo tee /usr/share/raspi-ui-overrides/adtproserver.desktop > ~/Desktop/adtproserver.desktop
fi fi
# LXTerminal: # LXTerminal:
if [[ ! $(grep lxterminal.desktop /etc/xdg/lxpanel/profile/LXDE-pi/panels/panel 2> /dev/null) && ! -f ~/Desktop/lxterminal.desktop ]]; then if [[ ! $(grep lxterminal.desktop /etc/xdg/lxpanel/profile/LXDE-pi/panels/panel 2> /dev/null) && ! -f ~/Desktop/lxterminal.desktop ]]; then