1
0
mirror of https://github.com/AG7GN/nexus-utilities.git synced 2025-05-28 12:20:13 -07:00
nexus-utilities/nexus-version.sh
2020-08-31 17:43:30 -07:00

18 lines
411 B
Bash

#!/bin/bash
# Script to print Nexus version and other info
VERSION="1.1.1"
if [ ! -s /boot/nexus.txt ]
then
echo "NEXUS_VERSION=unknown" > /tmp/nexus.txt
sudo mv /tmp/nexus.txt /boot/nexus.txt
fi
source /boot/nexus.txt
yad --center --title="Nexus Version - version $VERSION" --info --borders=30 --no-wrap \
--text="<b>Nexus Version $NEXUS_VERSION</b>" --buttons-layout=center --button=Close:0
exit 0