SDDM Theme, KDE Lock, BlueJ, Greenfoot

This commit is contained in:
Frank Schiebel 2023-09-06 14:43:55 +02:00
parent 06436c312e
commit 5ceb0bfe1a
8 changed files with 185 additions and 11 deletions

14
get_greenfoot_bluej.sh Executable file
View file

@ -0,0 +1,14 @@
#!/bin/bash
srvpath=/var/www/html/javadev
mkdir -p $srvpath
rm -f $srvpath/*
cd $srvpath || exit 1
greenfoot=https://www.greenfoot.org/download/files/Greenfoot-linux-371.deb
bluej=https://www.bluej.org/download/files/BlueJ-linux-520.deb
wget $greenfoot -O $srvpath/greenfoot.deb
wget $bluej -O $srvpath/bluej.deb