From 3850b194257b7c3aa6e17d964c4c618c8ba61047 Mon Sep 17 00:00:00 2001 From: cryptozoidberg Date: Wed, 18 Jan 2023 18:36:25 +0100 Subject: [PATCH] added helper message to script --- utils/Zano_appimage_wrapper.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/utils/Zano_appimage_wrapper.sh b/utils/Zano_appimage_wrapper.sh index 7aace196..51130654 100755 --- a/utils/Zano_appimage_wrapper.sh +++ b/utils/Zano_appimage_wrapper.sh @@ -10,6 +10,10 @@ call_app() { pushd $script_dir usr/bin/Zano "$@" + if [ $? -ne 0 ]; then + echo -e "If Zano failed to launch, it might need to install xinerama extension for the X C Binding with this command:\n sudo apt-get install libxcb-xinerama0e" + fi + popd exit }