1
0
Fork 0
forked from lthn/blockchain

Merge branch 'release'

This commit is contained in:
cryptozoidberg 2023-02-15 12:59:32 +01:00
commit 237b09d886
No known key found for this signature in database
GPG key ID: 22DEB97A54C6FDEC
2 changed files with 6 additions and 2 deletions

@ -1 +1 @@
Subproject commit 73d36003da48622469ebe8f5bd39d2a8ed49a5d5
Subproject commit 22212b20250b918f713dc90e85dadc2700d23a6a

View file

@ -1,4 +1,4 @@
#!/bin/bash -x
#!/bin/bash
script_dir=$( dirname "$(readlink -f "$0")" )
out_dir=~/.local/share/applications
@ -10,6 +10,10 @@ call_app()
{
pushd $script_dir
usr/bin/Zano "$@"
if [ $? -ne 0 ]; then
echo $'\n\n\x1b[1mIf Zano fails to launch, it might need to install xinerama extension for the X C Binding with this command:\n\x1b[2m sudo apt-get install libxcb-xinerama0\n\n'
fi
popd
exit
}