Compare commits

...

1 Commits

  1. 8
      README.md
  2. 13
      quickget

@ -110,9 +110,13 @@ Now install all the **Requirements** documented above.
## Graphical User Interfaces ## Graphical User Interfaces
While `quickemu` and `quickget` are designed for the terminal, a graphical user interfaces is also available: While `quickemu` and `quickget` are designed for the terminal, a graphical user interface is also available:
* [Quickgui](https://github.com/quickgui/quickgui) by [Mark Johnson](https://github.com/marxjohnson) and [Yannick Mauray](https://github.com/ymauray). * **[Quickgui](https://github.com/quickgui/quickgui)** by [Mark Johnson](https://github.com/marxjohnson) and [Yannick Mauray](https://github.com/ymauray).
Many thanks to [Luke Wesley-Holley](https://github.com/Lukewh) and
[Philipp Kiemle](https://github.com/daPhipz) for creating the
**[Quickemu icons](https://github.com/Lukewh/quickemu-icons)** 🎨
### Quickgui for Ubuntu ### Quickgui for Ubuntu

@ -88,7 +88,9 @@ function list_csv() {
local FUNC local FUNC
local OPTION local OPTION
local OS local OS
local PNG
local RELEASE local RELEASE
local SVG
local ZS="" local ZS=""
local DL="" local DL=""
@ -99,7 +101,7 @@ function list_csv() {
else else
DL="wget" DL="wget"
fi fi
echo "Display Name,OS,Release,Option,Downloader" echo "Display Name,OS,Release,Option,Downloader,PNG,SVG"
for OS in $(os_support); do for OS in $(os_support); do
DISPLAY_NAME="$(pretty_name "${OS}")" DISPLAY_NAME="$(pretty_name "${OS}")"
if [[ "${OS}" == *"ubuntu"* ]]; then if [[ "${OS}" == *"ubuntu"* ]]; then
@ -111,6 +113,9 @@ function list_csv() {
else else
FUNC="${OS}" FUNC="${OS}"
fi fi
PNG="https://lukewh.github.io/quickemu-icons/png/${FUNC}/${FUNC}-quickemu-white-pinkbg.png"
SVG="https://lukewh.github.io/quickemu-icons/png/${FUNC}/${FUNC}-quickemu-white-pinkbg.svg"
for RELEASE in $("releases_${FUNC}"); do for RELEASE in $("releases_${FUNC}"); do
if [ "${OS}" == "macos" ]; then if [ "${OS}" == "macos" ]; then
@ -129,14 +134,14 @@ function list_csv() {
if [ "${OS}" == "windows" ]; then if [ "${OS}" == "windows" ]; then
for OPTION in "${LANGS[@]}"; do for OPTION in "${LANGS[@]}"; do
echo "${DISPLAY_NAME},${OS},${RELEASE},${OPTION},${DOWNLOADER}" echo "${DISPLAY_NAME},${OS},${RELEASE},${OPTION},${DOWNLOADER},${PNG},${SVG}"
done done
elif [ "${OS}" == "popos" ]; then elif [ "${OS}" == "popos" ]; then
for OPTION in intel nvidia; do for OPTION in intel nvidia; do
echo "${DISPLAY_NAME},${OS},${RELEASE},${OPTION},${DOWNLOADER}" echo "${DISPLAY_NAME},${OS},${RELEASE},${OPTION},${DOWNLOADER},${PNG},${SVG}"
done done
else else
echo "${DISPLAY_NAME},${OS},${RELEASE},,${DOWNLOADER}" echo "${DISPLAY_NAME},${OS},${RELEASE},,${DOWNLOADER},${PNG},${SVG}"
fi fi
done done
done done

Loading…
Cancel
Save