mirror of
https://github.com/oSoWoSo/DistroHopper.git
synced 2024-08-14 22:46:53 +00:00
up
This commit is contained in:
parent
67686fcada
commit
a574a3e737
101 changed files with 1344 additions and 527 deletions
132
quickfzf
132
quickfzf
|
@ -6,97 +6,105 @@
|
|||
|
||||
# Define variables
|
||||
progname="${progname:="${0##*/}"}"
|
||||
version="0.22"
|
||||
version="0.24"
|
||||
#EDITOR="nano"
|
||||
configfile=~/.config/quickfzf/config
|
||||
vms=(*.conf)
|
||||
|
||||
# Set traps to catch the signals and exit gracefully
|
||||
trap "exit" INT
|
||||
trap "exit" EXIT
|
||||
|
||||
# Dependency check: check if fzf is installed and can be executed
|
||||
if ! command -v fzf >/dev/null 2>&1; then
|
||||
echo "You are missing fzf..." && exit 255
|
||||
echo "You are missing fzf..." && exit 255
|
||||
fi
|
||||
|
||||
if ! command -v quickemu >/dev/null 2>&1; then
|
||||
echo "You are missing quickemu..." && exit 255
|
||||
echo "You are missing quickemu..." && exit 255
|
||||
fi
|
||||
QUICKGET=$(command -v quickget) || exit 255
|
||||
|
||||
QUICKGET=$(command -v quickget) || exit 255
|
||||
|
||||
# Display version and prepared VMs
|
||||
#printf " $progname: $version\n quickemu: $(quickemu --version)\n\n Prepared VMs:\n-------------\n"
|
||||
printf '%s: v.%s\nquickemu: v.%s\n\n Workdir: %s\n\n Prepared VMs:\n-------------\n' "$progname" "$version" "$(quickemu --version)" "$(pwd)"
|
||||
# Display header
|
||||
printf 'Simple TUI for quickemu\n%s: v.%s\nquickemu: v.%s\n' "$progname" "$version" "$(quickemu --version)"
|
||||
if [ -f "$configfile" ]; then
|
||||
printf 'custom command:\nquickemu %s\n' "$(cat "$configfile")"
|
||||
fi
|
||||
if [ -z "$EDITOR" ]; then
|
||||
echo "editor: Not set! edit configs will not work!"
|
||||
else
|
||||
echo "editor: $EDITOR"
|
||||
fi
|
||||
printf '\n Workdir: %s\n\n Prepared VMs:\n-------------\n' "$(pwd)"
|
||||
# Check if there are any VMs
|
||||
if [ ${#vms[@]} -eq 0 ]; then
|
||||
echo "No VMs found."
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# Print the names of the available VMs
|
||||
printf "%s\n" "${vms[@]%.*}"
|
||||
echo "-------------"
|
||||
|
||||
printf '\nPress CTRL+c anytime to kill %s\n\n' "$progname"
|
||||
# Action prompt
|
||||
printf " Do you want to create a new VM? (c)
|
||||
or run an existing one? (press anything)\n"
|
||||
edit VM's config file (e)
|
||||
quickemu custom command (q)
|
||||
or run an existing one? (press anything else)\n"
|
||||
read -rn 1 -s start
|
||||
case $start in
|
||||
c )
|
||||
todo="create"
|
||||
;;
|
||||
c ) todo="create";;
|
||||
e ) todo="edit";;
|
||||
q ) todo="custom";;
|
||||
* ) todo="run";;
|
||||
esac
|
||||
|
||||
# If the user chose to create a new VM
|
||||
if [ "$todo" = "create" ]; then
|
||||
os=$(quickget | sed 1d | cut -d':' -f2 | grep -o '[^ ]*' | fzf --cycle --header='Choose OS to download
|
||||
or CTRL-c or ESC to quit')
|
||||
# If the OS is Windows
|
||||
if [ "$os" = windows ]; then
|
||||
answer=$(echo "Default English
|
||||
Choose other language" | fzf --cycle)
|
||||
# If the user wants another windows language
|
||||
if [ "$answer" = "Choose other language" ]; then
|
||||
wrelease=$(echo "8
|
||||
10
|
||||
11" | fzf --cycle)
|
||||
# get window language list
|
||||
wlend=$(($(cat $QUICKGET | sed '/Arabic/,$!d' | grep -n '}' | cut -d':' -f1 | head -n 1) - 1))
|
||||
# get windows language
|
||||
wlang=$(cat $QUICKGET | sed '/Arabic/,$!d' | head -n $wlend | cut -d'=' -f2 | tail -c +2 | head -c -2 | sed 's/^[ \t]*//' | fzf --cycle --header='Choose Language
|
||||
or CTRL-c or ESC to quit')
|
||||
# downloading windows
|
||||
printf '\n Trying to download Windows %s %s...\n\n' "$wrelease" "$wlang"
|
||||
quickget "windows" "$wrelease" "$wlang"
|
||||
fi
|
||||
fi
|
||||
# Get the release and edition to download, if necessary
|
||||
os=$(quickget | sed 1d | cut -d':' -f2 | grep -o '[^ ]*' | fzf --cycle --header='Choose OS to download')
|
||||
choices=$(quickget "$os" | sed 1d)
|
||||
# Get the release and edition to download, if necessary
|
||||
if [ "$(echo "$choices" | wc -l)" = 1 ]; then
|
||||
# get release
|
||||
release=$(echo "$choices" | grep 'Releases' | cut -d':' -f2 | grep -o '[^ ]*' | fzf --cycle --header='Choose Release
|
||||
or CTRL-c or ESC to quit')
|
||||
# downloading
|
||||
printf '\n Trying to download %s %s...\n\n' "$os" "$release"
|
||||
quickget "$os" "$release"
|
||||
# get release
|
||||
release=$(echo "$choices" | grep 'Releases' | cut -d':' -f2 | grep -o '[^ ]*' | fzf --cycle --header='Choose Release')
|
||||
# downloading
|
||||
printf '\n Trying to download %s %s...\n\n' "$os" "$release"
|
||||
quickget "$os" "$release"
|
||||
else
|
||||
# get release
|
||||
release=$(echo "$choices" | grep 'Releases' | cut -d':' -f2 | grep -o '[^ ]*' | fzf --cycle --header='Choose Release
|
||||
or CTRL-c or ESC to quit')
|
||||
# get edition
|
||||
edition=$(echo "$choices" | grep 'Editions' | cut -d':' -f2 | grep -o '[^ ]*' | fzf --cycle --header='Choose Edition
|
||||
or CTRL-c or ESC to quit')
|
||||
# downloading
|
||||
printf '\n Trying to download %s %s %s...\n\n' "$os" "$release" "$edition"
|
||||
quickget "$os" "$release" "$edition"
|
||||
# get release
|
||||
release=$(echo "$choices" | grep 'Releases' | cut -d':' -f2 | grep -o '[^ ]*' | fzf --cycle --header='Choose Release')
|
||||
# get edition
|
||||
edition=$(echo "$choices" | grep 'Editions' | cut -d':' -f2 | grep -o '[^ ]*' | fzf --cycle --header='Choose Edition')
|
||||
# downloading
|
||||
printf '\n Trying to download %s %s %s...\n\n' "$os" "$release" "$edition"
|
||||
quickget "$os" "$release" "$edition"
|
||||
fi
|
||||
|
||||
# edit VM's config'
|
||||
elif [ "$todo" = "edit" ]; then
|
||||
editconfig=$(ls | grep '.conf' | fzf --cycle --header='Choose config to edit')
|
||||
"$EDITOR" "$editconfig"
|
||||
|
||||
# create quickemu custom command
|
||||
elif [ "$todo" = "custom" ]; then
|
||||
custom=$(echo "edit delete"| grep -o '[^ ]*' | fzf --cycle --header='Edit or delete custom command?')
|
||||
if [ "$custom" = "edit" ]; then
|
||||
quickemu
|
||||
printf '\nEnter quickemu custom command:\n'
|
||||
read -r qcommand
|
||||
mkdir -p ~/.config/quickfzf
|
||||
echo "$qcommand" > "$configfile"
|
||||
elif [ "$custom" = "delete" ]; then
|
||||
rm -r ~/.config/quickfzf
|
||||
fi
|
||||
|
||||
# run VM
|
||||
elif [ "$todo" = "run" ]; then
|
||||
# choose VM to run
|
||||
chosen=$(echo "$(ls *.conf 2>/dev/null | sed 's/\.conf$//')" | fzf --cycle --header='Choose VM to run')
|
||||
|
||||
# Run chosen VM
|
||||
printf '\n Starting %s...\n\n' "$chosen"
|
||||
if [ -f "$configfile" ]; then
|
||||
quickemu $(cat "$configfile") -vm "$chosen".conf
|
||||
else
|
||||
quickemu -vm "$chosen".conf
|
||||
fi
|
||||
fi
|
||||
# choose VM to run
|
||||
chosen=$(echo "$(ls *.conf 2>/dev/null | sed 's/\.conf$//')" | fzf --cycle --header='Choose VM to run
|
||||
or CTRL-c or ESC to quit')
|
||||
|
||||
# Run chosen VM
|
||||
printf '\n Starting %s...\n\n' "$chosen"
|
||||
quickemu -vm "$chosen.conf"
|
||||
|
||||
exit 0
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue