wimpysworld / desktopify

Convert Ubuntu Server for Raspberry Pi into a Desktop
https://www.youtube.com/watch?v=umtZuUJOU38
MIT License
518 stars 90 forks source link

Add Ubuntu 20.10 support #65

Closed kylagit closed 2 years ago

kylagit commented 3 years ago

Please add Ubuntu 20.10 support to dekstopify, something like this

Check if we're running 20.04 or 20.10

CODENAME=$(lsb_release -cs) if [ "${CODENAME}" != "focal, groovy" ]; then echo "[!] This script is only intended to run on Ubuntu 20.04 or 20.10." exit 1 fi

I dont know if

if [ "${CODENAME}" != "focal, groovy" ]; then

Is correct but you should understand what i mean

hanseatv6 commented 3 years ago

Here is a working example:

if [ "${CODENAME}" != "focal" || "groovy" ]; then

hcet14 commented 3 years ago

Should be closed. Pi Imager handles it.

flexiondotorg commented 2 years ago

Duplicate of #59