1
0
mirror of https://github.com/AG7GN/nexus-utilities.git synced 2025-05-15 14:10:09 -07:00

Change 'hampi' references to 'nexus'

This commit is contained in:
Steve Magnuson 2020-08-30 10:11:01 -07:00
parent 668f38863f
commit eb634068a1
4 changed files with 25 additions and 2 deletions

View File

@ -157,7 +157,7 @@ Default is disabled. If disabled, Direwolf APRS will not autostart when the Pi
<br /><br />
<b>IMPORTANT</b>: If a piano script with the same name already exists, the old one will be renamed with a <pre>.YYYYMMDD</pre> extension appended to the file name.
<br /><br />
See <a href="https://github.com/AG7GN/hampi-utilities/blob/master/README.md#check-piano-script">Check Piano Script</a> for details.
See <a href="https://github.com/AG7GN/nexus-utilities/blob/master/README.md#check-piano-script">Check Piano Script</a> for details.
</p>
<a href="#top">Top</a>

View File

@ -1 +1 @@
VERSION="2.3.20"
VERSION="2.3.21"

10
nexus-version.desktop Normal file
View File

@ -0,0 +1,10 @@
[Desktop Entry]
Name=Nexus Release Info
GenericName=Nexus Release Info
Comment=Print Nexus release information
Exec=sh -c /usr/local/bin/nexus-version.sh
Icon=/usr/share/raspberrypi-artwork/raspitr.png
Terminal=false
Type=Application
Categories=HamRadio;
Comment[en_US]=Nexus Release Info

13
nexus-version.sh Normal file
View File

@ -0,0 +1,13 @@
#!/bin/bash
# Script to print Nexus version and other info
VERSION="1.1.0"
[ -s /boot/nexus.txt ] || exit 0
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