summaryrefslogtreecommitdiff
path: root/.local
diff options
context:
space:
mode:
authorsinanmohd <sinan@firemail.cc>2023-05-06 12:21:59 +0530
committersinanmohd <sinan@firemail.cc>2023-05-06 12:21:59 +0530
commitd2eb3db31f0ea17103786f055e19714e2039e143 (patch)
treefe6ded5f7a692deb5db7066af3dcf712f25242ce /.local
parentdcf19853def2fbb51320401e5fefc2f7593b938c (diff)
livevm: dont show menubar by default
Diffstat (limited to '.local')
-rwxr-xr-x.local/bin/livevm4
1 files changed, 2 insertions, 2 deletions
diff --git a/.local/bin/livevm b/.local/bin/livevm
index 26e3160..838977a 100755
--- a/.local/bin/livevm
+++ b/.local/bin/livevm
@@ -22,7 +22,7 @@ while getopts "wehc:d:u:q:r:" f
do
case "$f" in
w)
- cmd="${cmd} -device qxl -display gtk"
+ cmd="${cmd} -device qxl -display gtk,show-menubar=off"
;;
e)
[ ! -f "/usr/share/edk2-ovmf/x64/OVMF_CODE.fd" ] &&
@@ -74,6 +74,6 @@ done
# use virgl by default if wangblows is not set
[ -n "${cmd##*device qxl*}" ] &&
- cmd="${cmd} -device virtio-vga-gl -display gtk,gl=on"
+ cmd="${cmd} -device virtio-vga-gl -display gtk,gl=on,show-menubar=off"
eval "$cmd"