-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
q
executable file
·950 lines (853 loc) · 24.9 KB
/
q
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
#!/usr/bin/bash
# Author: zenobit
# Description: Uses gum to provide a simple TUI for VMs using qemu
# Based of: https://github.com/quickemu-project/quickemu
# License MIT
## NEEDED
CHARACTERS=" "
define_variables() {
color=$(( RANDOM % 255 + 1 ))
progname="${progname:="${0##*/}"}"
configdir="$HOME/.config/$progname"
version='0.67'
vms=(*.conf)
if ! command -v gum >/dev/null 2>&1; then
echo 'You are missing gum! Exiting...' && exit 1
fi
#export BORDER="rounded"
color2=$(( RANDOM % 255 + 1 ))
export BORDERS_FOREGROUND="$color"
export GUM_CHOOSE_CURSOR_FOREGROUND="$color"
export GUM_CHOOSE_SELECTED_FOREGROUND="$color"
export GUM_CONFIRM_PROMPT_FOREGROUND=""
export GUM_CONFIRM_SELECTED_FOREGROUND="$color"
export GUM_CONFIRM_UNSELECTED_FOREGROUND=0
export GUM_FILTER_CURSOR_TEXT_FOREGROUND=""
export GUM_FILTER_HEADER_FOREGROUND=""
export GUM_FILTER_INDICATOR_FOREGROUND="$color2"
export GUM_FILTER_MATCH_FOREGROUND="$color2"
export GUM_FILTER_PROMPT_FOREGROUND="$color2"
export GUM_FILTER_SELECTED_PREFIX_FOREGROUND="$color2"
export GUM_FILTER_SELECTED_PREFIX_BORDER_FOREGROUND="$color2"
# Set traps to catch the signals and exit gracefully
trap 'exit' INT
trap 'exit' EXIT
if ! command -v quickemu >/dev/null 2>&1; then
echo 'You are missing quickemu...!'
fi
QUICKGET=$(command -v quickget)
if ! command -v gum >/dev/null 2>&1; then
echo 'You are missing gum...!'
fi
# just for development in termux
if command -v termux-info >/dev/null 2>&1; then
echo "Running in termux!"
TMP="$(pwd)/tmp"
fi
# use configdir
if [ -f "${configdir}/border" ]; then
BORDER="$(cat "${configdir}"/border)"
else
BORDER="double"
fi
if [ -f "${configdir}/color" ]; then
BORDERS_FOREGROUND="$(cat "${configdir}"/color)"
else
BORDERS_FOREGROUND="$(( RANDOM % 255 + 1 ))"
fi
if [ -f "${configdir}/spinner" ]; then
spinner="$(cat "${configdir}"/spinner)"
else
spinner="globe"
fi
}
## HELP
show_help() {
clear
show_headers_full
gum style --padding "0 1" --border="$BORDER" --border-foreground="$BORDERS_FOREGROUND" "$title"
}
help_main() {
title=" $progname $version
Uses gum to provide a simple TUI for quickemu and quickget 'https://github.com/quickemu-project/quickemu'
'https://github.com/charmbracelet/gum'
For menus you can use arrow keys or fuzzy filtering and then ENTER
(e + ENTER for exit or b + ENTER for back to main menu)
If is posible choose more options use TAB for highliting desired and then ENTER
Config files are stored at $configdir
As temp folder is used $TMP
"
}
## MAIN
#template for functions
# title=""
# show_header
gum_choose_os() {
title="Choose OS"
show_header
os=$(gum filter | awk 'NR==2,/zorin/' | cut -d':' -f2 | grep -o '[^ ]*')
choices=$("$QUICKGET" "$os")
# preparation for quickemu refactor
#os=$(gum filter $(ls OS/* | cut -d'/' -f2))
}
gum_choose_release() {
title="Choose release"
show_header
height=$()
release=$(echo "$choices" | grep 'Releases' | cut -d':' -f2 | grep -o '[^ ]*' | gum filter --sort)
}
gum_choose_edition() {
title="Choose edition"
show_header
edition=$(echo "$choices" | grep 'Editions' | cut -d':' -f2 | grep -o '[^ ]*' | gum filter --prompt='Choose edition' --sort)
}
gum_filter_os() {
os=$("$QUICKGET" | awk 'NR==2,/zorin/' | cut -d':' -f2 | grep -o '[^ ]*')
choices=$("$QUICKGET" "$os")
#preparation for refactoring
#os=$(gum filter < "$configdir/supported")
#choices=$(cat "$configdir/distros/$os")
}
gum_filter_release() {
release=$(echo "$choices" | grep 'Releases:' | cut -d':' -f2 | grep -o '[^ ]*' | gum filter --sort)
}
gum_filter_edition() {
edition=$(echo "$choices" | grep 'Editions:' | cut -d':' -f2 | grep -o '[^ ]*' | gum filter --sort)
}
gum_choose_VM() {
if find . -maxdepth 1 -name '*.conf' >/dev/null 2>&1 ; then
chosen=$(find . -maxdepth 1 -name '*.conf' | cut -d'/' -f2 | rev | cut -d'.' -f2-9 | rev | gum filter --select-if-one)
else
gum style --foreground 1 "Can't!"
fi
}
gum_choose_VM() {
if ls | grep ".conf" ; then
height=$(ls -1 | grep ".conf" | wc -l)
title="Choose VM"
show_header
chosen=$(ls -1 | grep ".conf" | rev | cut -d'.' -f2- | rev | gum filter --height "$height")
else
echo "No VMs to run."
fi
#chosen=$(printf '%s\n' "${vms[@]%.conf}" | gum filter --height "$("${vms[@]%.conf}" | wc -l)" --header='Choose VM to run')
}
create_VM() {
gum_filter_os
if [ -z "$os" ]; then exit 100
elif [ "$(echo "$choices" | wc -l)" = 1 ]; then
clear
gum_filter_release
clear
"$QUICKGET" "$os" "$release"
else
clear
gum_filter_release
clear
gum_filter_edition
clear
"$QUICKGET" "$os" "$release" "$edition"
fi
show_headers
}
create_VM2() {
gum_choose_os
if [ -z "$os" ]; then exit 100
elif [ "$(echo "$choices" | wc -l)" = 1 ]; then
clear
gum_choose_release
#gum spin --spinner $spinner --show-output --title="Downloading $os $/release" -- "$QUICKGET" "$os" "$release"
"$QUICKGET" "$os" "$release"
if [ -f "${configdir}/default_vm_config" ]; then
echo 'Adding default values to config...'
cat "${configdir}/default_vm_config" >> "$os-$release.conf"
fi
else
clear
gum_choose_release
gum_choose_edition
gum spin --spinner $spinner --show-output --title="Downloading $os $release $edition" -- "$QUICKGET" "$os" "$release" "$edition"
if [ -f "${configdir}/default_vm_config" ]; then
echo 'Adding default values to config...'
cat "${configdir}/default_vm_config" >> "$os-$release-$edition.conf"
fi
fi
echo "
To start your new $os virtual machine use 'run' from menu"
show_headers_small
}
edit_default_VMs_config() {
title="Editing default VM's config..."
show_header
printf 'For example:\ncpu_cores="2"\nram="4G"\n'
title="CTRL+D to complete. CTRL+C and esc will cancel"
show_header
gum write > "${configdir}"/default_vm_config
}
edit_VM_config() {
if [ -z "$EDITOR" ]; then
echo "Editor not set! Can't continue!"
else
height=$(ls -1 | grep ".conf" | wc -l)
${EDITOR} "$(ls | grep ".conf" | gum filter --height "$height")"
fi
}
custom_quickemu_command() {
custom=$(echo "edit delete" | grep -o '[^ ]*' | gum choose --header='Edit or delete custom command?')
if [ "$custom" = "edit" ]; then
quickemu
printf '\nEnter quickemu custom command:\n For example:--public-dir ~/Downloads\n:'
read -r command
mkdir -p "$configdir"
echo "$command" > "${configdir}/command"
elif [ "$custom" = "delete" ]; then
rm "${configdir}/command"
fi
}
run_VM() {
title="Starting $chosen..."
show_header
if [ -f "${configdir}/command" ]; then
quickemu < "${configdir}/command" -vm "$chosen.conf"
else
quickemu -vm "$chosen.conf"
fi
show_headers
}
gum_choose_running() {
pid_files=( */*.pid )
if [ ${#pid_files[@]} -gt 0 ]; then
mapfile -t running < <(find . -name '*.pid' -printf '%P\n' | sed 's/\.pid$//')
if [ ${#running[@]} -gt 0 ]; then
selected=$(gum choose --select-if-one "${running[@]}")
else
gum style --foreground 1 "Can't!" && selected=""
fi
else
gum style --foreground 1 "Can't!" && selected=""
fi
}
# test
gum_choose_runnings() {
pid_files=( */*.pid )
if [ ${#pid_files[@]} -gt 0 ]; then
mapfile -t running < <(find . -name '*.pid' -printf '%P\n' | sed 's/\.pid$//')
if [ ${#running[@]} -gt 0 ]; then
selected=$(gum choose --select-if-one "${running[@]}")
else
gum style --foreground 1 "Can't!" && selected=""
fi
else
gum style --foreground 1 "Can't!" && selected=""
fi
}
gum_choose_VM_to_delete() {
height=$(ls -1 | grep ".conf" | wc -l)
GUM_FILTER_HEADER="Choose VM to delete"
GUM_FILTER_HEADER_FOREGROUND=""
if ls | grep ".conf" ; then
chosen=$(echo ${vms[@]%.*} | tr " " "\n" | gum filter --height "$height" --no-limit)
echo 'Removing config(s)...'
rm -r $chosen & rm $chosen.conf
else
echo "No VMs to delete"
fi
}
#gum_choose_VM_to_delete() {
#if ls | grep ".conf" ; then
#GUM_FILTER_HEADER="Choose VM to delete"
#height=$(ls -1 | grep ".conf" | wc -l)
#chosen=$(ls -1 | grep ".conf" | gum filter --height "$height" --no-limit)
#delete_VM
#else
#echo "No VMs to delete"
#fi
#}
delete_VM() {
#chosen_to_delete=$(cat $chosen | while read line; echo $line | rev | cut -d'.' -f2-5 | rev; done)
echo "#TODO"
echo $chosen | tr " " "\n" | while read line
do
echo 'Removing dir(s)...'
rm -r $(echo $line | rev | cut -d'.' -f2-5 | rev)
done
echo 'Removing config(s)...'
rm $(echo "$chosen")
}
## ADVANCED
# shellcheck disable=SC2016,2034,2153
add_new_distro() {
mkdir -p "$configdir"
echo "add new OS, all lowercase"
NAME="$(gum input --header="NAME" --placeholder="arch")"
echo "add a pretty name for new OS *only if the catch all is not suitable*"
PRETTY_NAME="$(gum input --header="PRETTY_NAME" --placeholder="Arch Linux")"
echo "add a homepage for new OS"
HOMEPAGE="$(gum input --header="HOMEPAGE" --placeholder="https://voidlinux.org/")"
echo "current supported release versions"
RELEASES="$(gum input --header="RELEASES" --placeholder="8 9")"
echo "the editions if new OS has multiple flavours/editions"
EDITIONS="$(gum input --header="EDITIONS" --placeholder="kde gnome")"
echo "base URL for ISO download"
URL="$(gum input --header="URL" --placeholder="https://ddl.bunsenlabs.org/ddl")"
echo "Name of ISO"
ISO="$(gum input --header="ISO" --placeholder="GhostBSD-${RELEASE}-XFCE.iso")"
echo "name of hash file "
CHECKSUM="$(gum input --header="CHECKSUM" --placeholder='${ISO}.sha256sum')"
cat <<EOF > "$configdir/template"
#line 58+
$NAME) PRETTY_NAME="$PRETTY_NAME";;
#line 207+
$NAME \\
#line 292+
$NAME) HOMEPAGE=$HOMEPAGE;;
#line 374+
function releases_$NAME() {
echo $RELEASES
}
function editions_$NAME() {
echo $EDITIONS
}
#line 1176+
function get_$NAME() {
local EDITION="\${1:-}"
local HASH=""
local ISO="$ISO"
local URL="$URL"
HASH="\$(wget -q -O- \${URL}/\$CHECKSUM | grep (\${ISO} | cut -d' ' -f4)"
echo "\${URL}/\${ISO}" "\${HASH}"
}
EOF
diff "$configdir/template" "quickget"
}
# shellcheck disable=SC2154
create_desktop_entry() {
cat <<EOF > "${DESKTOP_FILE}"
[Desktop Entry]
Version=$version
Type=$type
Name=$name
GenericName=$progname
Comment=$comment
Exec=$execmd
Icon=$icon
Terminal=$terminal
X-MultipleArgs=$args
Type=$type
Categories=$categories
StartupNotify=$notify
MimeType=$mime
Keywords=$keyword
EOF
}
test_ISOs_download() {
rm -r "$configdir"
mkdir -p "$configdir" && cd "$configdir" || exit
touch "$configdir/test"
#"$QUICKGET" | sed 1d | cut -d':' -f2 | grep -o '[^ ]*' > supported
os=$(gum filter < "$configdir"/supported)
choices=$("$QUICKGET" "$os" | sed 1d)
while read -r get_name; do
echo "Trying $get_name..."
mkdir -p "$configdir/_distros/$get_name" && cd "$configdir/_distros/$get_name" || exit
releases=$("$QUICKGET" "$get_name" | grep 'Releases:' | cut -d':' -f2 | sed 's/^ //' | sed 's/ *$//')
echo "$releases" > releases
editions=$("$QUICKGET" "$get_name" | grep 'Editions:' | cut -d':' -f2 | sed 's/^ //' | sed 's/ *$//')
echo "$editions" > editions
if [ -z "$editions" ]; then
for release in $releases; do
echo "$get_name" >> "$configdir/test"
timeout 10 "$QUICKGET" -t "$get_name" "${release}" >> "$configdir/test"
done
else
while read -r release; do
for edition in $editions; do
echo "$get_name" >> "$configdir/test"
timeout 10 "$QUICKGET" -t "$get_name" "${release}" "${edition}" >> "$configdir/test"
done
done < releases
fi
cd "$configdir" || exit
done < supported
printf "\nDone"
}
show_ISOs_urls(){
rm -r "$configdir"
mkdir -p "$configdir" && cd "$configdir" || exit
touch "$configdir/test"
"$QUICKGET" | sed 1d | cut -d':' -f2 | grep -o '[^ ]*' > supported
while read -r get_name; do
echo "Trying $get_name..."
mkdir -p "$configdir/_distros/$get_name" && cd "$configdir/_distros/$get_name" || exit
releases=$("$QUICKGET" "$get_name" | grep 'Releases' | cut -d':' -f2 | sed 's/^ //' | sed 's/ *$//')
echo "$releases" > releases
editions=$("$QUICKGET" "$get_name" | grep 'Editions' | cut -d':' -f2 | sed 's/^ //' | sed 's/ *$//')
echo "$editions" > editions
if [ -z "$editions" ]; then
for release in $releases; do
echo "$get_name" >> "$configdir/test"
timeout 5 "$QUICKGET" -s "$get_name" "${release}" >> "$configdir/test" #&& $(killall zsync >> /dev/null)
done
else
while read -r release; do
for edition in $editions; do
echo "$get_name" >> "$configdir/test"
timeout 5 "$QUICKGET" -s "$get_name" "${release}" "${edition}" >> "$configdir/test" #&& $(killall zsync >> /dev/null)
done
done < releases
fi
cd "$configdir" || exit
done < supported
printf "\nDone"
}
get_ssh_port() {
port=$(grep 'ssh' < "$selected".ports | cut -d',' -f2)
}
ssh_into() {
gum_choose_running
if [ -n "$selected" ]; then
get_ssh_port
username=$(gum input --prompt "$selected user? ")
ssh "$username"@localhost -o ConnectTimeout=5 -o StrictHostKeyChecking=accept-new -p "$port"
show_headers
fi
}
open_distro_homepage(){
os=$("$QUICKGET" | awk 'NR==2,/zorin/' | cut -d':' -f2 | grep -o '[^ ]*')
choice=$(gum filter ${os})
"$QUICKGET" --open-homepage "${choice}" 2>&1 &
}
kill_vm() {
gum_choose_running
if [ -n "$selected" ]; then
echo "${selected}"
gum confirm "Really kill $selected?" && pid=$(cat "$selected".pid) && kill "$pid"
show_headers
fi
}
# test
kill_vms() {
gum_choose_runnings
if [ -n "$selected" ]; then
for vm_name in "${selected[@]}"; do
gum confirm "Really kill $vm_name?"
pid=$(cat "${vm_name}.pid")
kill "$pid"
done
show_headers
fi
}
gum_choose_VM_to_delete() {
if [ -n "$(echo *.conf)" ]; then
chosen=$(echo "${vms[@]%.*}" | tr " " "\n" | gum choose --select-if-one)
gum confirm "Really delete $chosen" && rm -r "$chosen" && rm "$chosen".conf
show_headers
else
gum style --foreground 1 "No VMs!"
fi
}
## SETTINGS
update_quicktui() {
echo "Not yet implemented"
}
generate_supported() {
$QUICKGET --list | tee "$configdir/supported"
}
headers_small_or() {
printf '\n\nsmall:\n'
show_headers_small
printf '\n\nfull:\n'
show_headers_full
printf '\n\ncurrent:\n'
show_headers
use_headers=$(gum choose --header " Use small headers or full?" "small" "full" "current")
echo "will use $use_headers"
show_headers
}
change_borders() {
title="Change borders style"
show_header
BORDER=$(echo "none
hidden
normal
rounded
thick
double" | gum filter --height $height)
mkdir -p ${configdir}
touch "${configdir}"/border
echo $BORDER > "${configdir}"/border
}
change_color() {
title="Define color number or choose random"
show_header
BORDER_FOREGROUND=$(echo 'random' | gum filter --height 1 --prompt="Enter custom" --no-strict)
mkdir -p ${configdir}
touch "${configdir}"/color
echo $BORDER_FOREGROUND > "${configdir}"/color
}
use_color() {
if [ -f "${configdir}/color" ]; then
BORDER_FOREGROUND=$(cat ${configdir}/color)
fi
}
change_spinner() {
spinner=$(echo "line
dot
minidot
jump
pulse
points
globe
moon
monkey
meter
hamburger" | gum filter --height 11)
mkdir -p ${configdir}
touch "${configdir}"/spinner
echo "$spinner" > "${configdir}"/spinner
}
# shellcheck disable=SC2015
icons_or() {
gum confirm " Use icons?
need Nerd Fonts" && echo "yes" > "$configdir/icons" || rm "$configdir/icons"
show_headers
}
use_icons() {
if [ -f "$configdir/icons" ]; then
icons=yes
else
icons=""
fi
}
## HEADERS
show_header() {
gum style --padding "0 1" --border="$BORDER" --border-foreground="$BORDERS_FOREGROUND" "$title"
}
show_version_qemu() {
qemu-x86_64 -version | sed 2d | cut -d' ' -f3
}
show_version_quickemu() {
quickemu --version | grep "ERROR! QEMU not found" && echo "QEMU is missing!" || quickemu --version
}
show_editor() {
if [ -z "$EDITOR" ]; then
echo ' editor Not set!'
else
echo " editor $EDITOR"
fi
}
show_vms() {
if [ ${#vms[@]} -eq 0 ]; then
gum style --foreground 1 "No VMs!"
else
echo "${vms[@]%.*}" | tr " " "\n"
fi
}
show_custom_small() {
if [ -f "${configdir}/command" ]; then
gum style --bold --foreground "$color2" "command:"
gum style "quickemu $(cat "${configdir}/command")"
fi
if [ -f "${configdir}/default_vm_config" ]; then
gum style --bold --foreground "$color2" "default config:"
gum style "$(cat "${configdir}/default_vm_config")"
fi
}
show_custom() {
show_custom_small
if [ -f "${configdir}/color" ]; then
gum style --bold --foreground "$color2" "color:"
gum style "$(cat "${configdir}/color")"
fi
if [ -f "${configdir}/border" ]; then
gum style --bold --foreground "$color2" "borders:"
gum style "$(cat "${configdir}/border")"
fi
if [ -f "${configdir}/spinner" ]; then
gum style --bold --foreground "$color2" "spinner:"
gum style "$(cat "${configdir}/spinner")"
fi
}
show_header_vms() {
pid_files=(*/*.pid)
vms=(*.conf)
vms_running=()
vms_not=()
vms_vm=$(gum style --bold --foreground "$color2" "ready:")
vms_run=""
if [ -n "$(find . -name '*.pid')" ]; then
for pid_file in "${pid_files[@]}"; do
instance_name=$(basename "$pid_file" .pid)
vms_running+=("$instance_name")
done
if [ "$icons" == yes ]; then
running_logo=$(gum style --foreground "$color" --bold ".")
else
running_logo=$(gum style --foreground "$color" --bold ">")
fi
for instance in "${vms_running[@]}"; do
vms_run+="$running_logo$instance "
done
fi
mapfile -t vms_not < <(comm -23 <(printf "%s\n" "${vms[@]}" | rev | cut -d'.' -f2-9 | rev | sort) <(printf "%s\n" "${vms_running[@]}" | sort))
vms_not_next=$(gum style --align center < <(printf '%s\n' "${vms_not[@]}"))
if [ -n "$(find . -name '*.pid')" ]; then
vms_run_next=$(echo "$vms_run" | tr " " "\n")
vms_header=$(gum join --vertical --align center "$vms_vm" "$vms_run_next" "$vms_not_next")
else
vms_header=$(gum join --vertical --align center "$vms_vm" "$vms_not_next")
fi
vms_border=$(gum style --padding "0 1" --border="$BORDER" --border-foreground $color "$vms_header")
header_vms=$(gum join --vertical --align left "$vms_border" "$tip_border")
}
show_header_tip() {
tip1=$(gum style --bold --foreground "$color2" "Tip: ")
tip2=$(gum style "try ")
tip3=$(shuf -n 1 "$configdir/supported")
tip4=$(gum style --bold --foreground="$color" "$tip3")
tip5=$(gum join "$tip1" "$tip2" "$tip4")
tip6=$("$QUICKGET" "$tip3")
tip7=$(gum style "$tip6")
tip8=$(gum join --vertical --align top "$tip5" "$tip7")
header_tip=$(gum style --padding "0 1" --border="$BORDER" --border-foreground $color "$tip8")
}
show_headers_small() {
logo1=$(gum style --foreground "$color2" " ▄▄▄▄
█ █
█ █
█▄▀▄")
logo2=$(gum style "v$version")
logo3=$(gum style --foreground "$color2" "▀")
logo4=$(gum join "$logo2" "$logo3")
logo5=$(gum join --vertical "$logo1" "$logo4")
header_logo=$(gum style --padding "0 1" --border=rounded --border-foreground $color "$logo5" )
show_header_vms
show_header_tip
custom1=$(gum style --bold --foreground "$color2" "workdir:")
custom2=$(gum style "$(pwd)")
custom3=$(gum join --vertical --align center "$custom1" "$custom2" "$(show_custom_small)")
header_custom=$(gum style --padding "0 1" --border="$BORDER" --border-foreground="$color" "$custom3")
header12=$(gum join --vertical "$header_tip" "$header_custom")
header34=$(gum join "$header_logo" "$header12")
gum join --align top --vertical "$header34" "$header_vms"
}
show_headers_full() {
logo0=$(gum style " simple VMs runner")
logo1=$(gum style --foreground "$color2" " ▄▄▄▄ ▄▄▄▄ ▄ ▄ ▄
█ █ █ █ █ █
█ █ █ █ █ █
█▄▀▄ █ █▄▄█ █")
logo2=$(gum style "v$version")
logo3=$(gum style --foreground "$color2" "▀")
logo4=$(gum style " for ")
logo5=$(gum style "quickemu")
logo6=$(gum join --align center --vertical "$logo0" "$logo1")
logo7=$(gum join "$logo2" "$logo3" "$logo4" "$logo5")
logo8=$(gum join --vertical "$logo6" "$logo7")
header_logo=$(gum style --align left --padding "0 1" --border=rounded --border-foreground $color "$logo8" )
header_dep=$(gum style --padding "0 1" --border="$BORDER" --border-foreground $color " qemu $(show_version_qemu)
quickemu $(show_version_quickemu)
$(show_editor)")
show_header_vms
show_header_tip
custom1=$(gum style --bold --foreground "$color2" "workdir:")
custom2=$(gum style "$(pwd)")
custom3=$(gum join --vertical --align center "$custom1" "$custom2" "$(show_custom)")
header_custom=$(gum style --padding "0 1" --border="$BORDER" --border-foreground="$color" "$custom3")
header1=$(gum join --vertical --align right "$header_logo" "$header_vms")
header2=$(gum join --vertical "$header_dep" "$header_custom" "$header_tip")
gum join --align top "$header1" "$header2"
}
show_headers() {
if [ "$use_headers" == full ]; then
show_headers_full
else
show_headers_small
fi
}
## MENU
show_menus() {
if [ "$icons" == yes ]; then
show_menu_main_icons
else
show_menu_main
fi
}
show_menu_main() {
while true
do
height=10
start=$(echo "create
run
OS homepage
ssh into
kill
delete
advanced
settings
help
exit $progname" | gum filter --height "$height")
# from choose: --selected ' run'
case $start in
create ) create_VM;;
run ) gum_choose_VM && run_VM;;
'ssh into' ) ssh_into;;
'OS homepage' ) open_distro_homepage;;
kill ) kill_vm;;
delete ) gum_choose_VM_to_delete;;
icons ) icons_or;;
'advanced' ) show_menu_advanced;;
'settings' ) show_menu_settings;;
'help' ) help_main; show_help;;
"exit $progname" ) exit 0;;
esac
done
}
show_menu_main_icons() {
while true
do
height=10
start=$(echo " create
run
OS homepage
ssh into
kill
delete
advanced
settings
help
exit $progname" | gum filter --height "$height")
# from choose: --selected ' run'
case $start in
' create' ) create_VM;;
' run' ) gum_choose_VM && run_VM;;
' ssh into' ) ssh_into;;
' OS homepage' ) open_distro_homepage;;
' kill' ) kill_vm;;
' delete' ) gum_choose_VM_to_delete;;
' icons' ) icons_or;;
' advanced' ) show_menu_advanced_icons;;
' settings' ) show_menu_settings_icons;;
' help' ) help_main; show_help;;
" exit $progname" ) exit 0;;
esac
done
}
show_menu_advanced() {
while true
do
title="advanced"
show_header
height=8
start=$(echo "test ISOs download
show ISOs URLs
set default config for VMs
edit VM config
custom quickemu command
add new distro
back to main menu
EXIT $progname" | gum filter --height "$height")
case $start in
'set default config for VMs' ) edit_default_VMs_config;;
'edit VM config' ) edit_VM_config;;
'custom quickemu command' ) custom_quickemu_command;;
'add new distro' ) add_new_distro;;
'test ISOs download' ) test_ISOs_download;;
'show ISOs URLs' ) show_ISOs_urls;;
'back to main menu') clear; show_headers; break;;
"exit $progname" ) exit 0;;
esac
done
}
show_menu_advanced_icons() {
while true
do
title="advanced"
show_header
height=8
start=$(echo " test ISOs download
show ISOs URLs
set default config for VMs
edit VM config
custom quickemu command
add distro
back to main menu
exit $progname" | gum filter --height "$height")
case $start in
' set default config for VMs' ) edit_default_VMs_config;;
' edit VM config' ) edit_VM_config;;
' custom quickemu command' ) custom_quickemu_command;;
' add distro' ) add_new_distro;;
' test ISOs download' ) test_ISOs_download;;
' show ISOs URLs' ) show_ISOs_urls;;
' back to main menu') clear; show_headers; break;;
" exit $progname" ) exit 0;;
esac
done
}
show_menu_settings() {
while true
do
title="settings"
show_header
height=10
start=$(echo "update $progname
regenerate supported
icons
accent color
borders color
borders style
spinner
headers
back to main menu
EXIT $progname" | gum filter --height "$height")
case $start in
"update $progname" ) update_quicktui;;
'regenerate supported' ) generate_supported;;
'icons' ) icons_or;;
'accent color' ) change_color;;
'borders color' ) change_color;;
'borders style' ) change_borders;;
'spinner' ) change_spinner;;
'headers' ) headers_small_or;;
'back to main menu') clear; show_headers; break;;
"exit $progname" ) exit 0;;
esac
done
}
show_menu_settings_icons() {
while true
do
title="settings"
show_header
height=10
start=$(echo " update $progname
regenerate supported
icons
accent color
borders color
borders style
spinner
headers
back to main menu
exit $progname" | gum filter --height "$height")
case $start in
" update $progname" ) update_quicktui;;
' regenerate supported' ) generate_supported;;
' icons' ) icons_or;;
' accent color' ) change_color;;
' borders color' ) change_color_border;;
' borders style' ) change_borders;;
' spinner' ) change_spinner;;
' headers' ) headers_small_or;;
' back to main menu') clear; show_headers; break;;
" exit $progname" ) exit 0;;
esac
done
}
# run
#clear
define_variables
use_icons
show_headers
show_menus