mirror of
https://github.com/oSoWoSo/DistroHopper.git
synced 2024-08-14 22:46:53 +00:00
Make casing of status output consistent
This commit is contained in:
parent
ce5aecd33d
commit
ab286f39b7
1 changed files with 4 additions and 4 deletions
8
quickemu
8
quickemu
|
@ -235,15 +235,15 @@ function vm_boot() {
|
|||
fi
|
||||
|
||||
if [ "${VIDEO_DRV}" == "qxl" ]; then
|
||||
echo " - Video: QXL"
|
||||
echo " - Video: ${VIDEO_DRV^^}"
|
||||
local VIDEO_DEV=" -vga ${VIDEO_DRV}"
|
||||
VIRGL="off"
|
||||
else
|
||||
echo " - Video: VirtIO-VGA"
|
||||
echo " - Video: ${VIDEO_DRV^^[v,g,a]}"
|
||||
local VIDEO_DEV="-device ${VIDEO_DRV},virgl=${VIRGL},X_RES=${X_RES},Y_RES=${Y_RES}"
|
||||
fi
|
||||
echo " - GL: ${GL}"
|
||||
echo " - Virgil3D: ${VIRGL}"
|
||||
echo " - GL: ${GL^^}"
|
||||
echo " - Virgil3D: ${VIRGL^^}"
|
||||
echo " - Output: ${UI^^}"
|
||||
|
||||
# Set the hostname of the VM
|
||||
|
|
Loading…
Reference in a new issue