From d052d913f9b4b6635853b000d45454505099f466 Mon Sep 17 00:00:00 2001 From: Martin Wimpress Date: Thu, 21 Oct 2021 00:09:43 +0100 Subject: [PATCH] Order the usage --- README.md | 6 ++++-- quickemu | 4 ++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 95cd4a0..b5e6754 100644 --- a/README.md +++ b/README.md @@ -460,14 +460,16 @@ Usage You can also pass optional parameters --delete : Delete the disk image. --display : Select display backend. 'sdl' (default), 'gtk' or 'spice' + --fullscreen : Starts VM in full screen mode (Ctl+Alt+f to exit) + --ignore-msrs-always : Configure KVM to always ignore unhandle machine-specific registers + --screen : Use specified screen to determine the window size. --shortcut : Create a desktop shortcut --snapshot apply : Apply/restore a snapshot. --snapshot create : Create a snapshot. --snapshot delete : Delete a snapshot. --snapshot info : Show disk/snapshot info. --status-quo : Do not commit any changes to disk/snapshot. - --fullscreen : Starts VM in full screen mode (Ctl+Alt+f to exit)" - --screen : Use specified screen to determine the window size. + --version : Print version ``` ## Desktop shortcuts diff --git a/quickemu b/quickemu index 65afb59..a690644 100755 --- a/quickemu +++ b/quickemu @@ -873,15 +873,15 @@ function usage() { echo "You can also pass optional parameters" echo " --delete : Delete the disk image." echo " --display : Select display backend. 'sdl' (default), 'gtk' or 'spice'" + echo " --fullscreen : Starts VM in full screen mode (Ctl+Alt+f to exit)" echo " --ignore-msrs-always : Configure KVM to always ignore unhandle machine-specific registers" + echo " --screen : Use specified screen to determine the window size." echo " --shortcut : Create a desktop shortcut" echo " --snapshot apply : Apply/restore a snapshot." echo " --snapshot create : Create a snapshot." echo " --snapshot delete : Delete a snapshot." echo " --snapshot info : Show disk/snapshot info." echo " --status-quo : Do not commit any changes to disk/snapshot." - echo " --fullscreen : Starts VM in full screen mode (Ctl+Alt+f to exit)" - echo " --screen : Use specified screen to determine the window size." echo " --version : Print version" exit 1 }