From c7e6d5b00564091c10696ff88f0a36706e2f30c5 Mon Sep 17 00:00:00 2001 From: alanbjohnston Date: Thu, 14 Oct 2021 12:38:24 -0400 Subject: [PATCH 1/2] added popup for instructions --- groundstation/cubicsdr.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/groundstation/cubicsdr.sh b/groundstation/cubicsdr.sh index 151c0a7e..f0b9fc80 100755 --- a/groundstation/cubicsdr.sh +++ b/groundstation/cubicsdr.sh @@ -41,6 +41,9 @@ sleep 5 setsid CubicSDR +zenity --info --width=650 --height=140 --title="Instructions" --text="When CubicSDR opens, select Generic RTL2832U device then click Start to begin.\n\nThen click on a signal in the watefall to listen." + + sleep 10 #$SHELL From fc0db40dc7df22ec0ef1f4e7d0385e44dcb8ef29 Mon Sep 17 00:00:00 2001 From: alanbjohnston Date: Thu, 14 Oct 2021 12:41:32 -0400 Subject: [PATCH 2/2] move popup --- groundstation/cubicsdr.sh | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/groundstation/cubicsdr.sh b/groundstation/cubicsdr.sh index f0b9fc80..3f4b6b62 100755 --- a/groundstation/cubicsdr.sh +++ b/groundstation/cubicsdr.sh @@ -37,12 +37,13 @@ sudo killall -9 CubicSDR &>/dev/null sudo killall -9 zenity &>/dev/null -sleep 5 +zenity --info --width=650 --height=140 --title="Instructions" --text="When CubicSDR opens, select Generic RTL2832U device then click Start to begin.\n\nThen click on a signal in the watefall to listen." & -setsid CubicSDR -zenity --info --width=650 --height=140 --title="Instructions" --text="When CubicSDR opens, select Generic RTL2832U device then click Start to begin.\n\nThen click on a signal in the watefall to listen." +sleep 5 + +setsid CubicSDR sleep 10