Immutable Page History Attachments

Diff for "devradio-window-sdr"

Page name: Diff for "devradio-window-sdr"
Differences between revisions 1 and 2
Revision 1 as of 2023-09-21 19:13:20
Size: 729
Editor: docviper
Comment:
Revision 2 as of 2023-09-21 19:31:11
Size: 751
Editor: docviper
Comment:
Deletions are marked like this. Additions are marked like this.
Line 16: Line 16:
{{{#!highlight sh
Line 17: Line 18:
Line 19: Line 19:
Line 21: Line 20:
Line 23: Line 21:
Line 25: Line 22:
Line 27: Line 23:
Line 29: Line 24:
Line 31: Line 25:
Line 33: Line 26:
Line 35: Line 27:
}}}
Line 42: Line 34:
{{{#!highlight sh
Line 43: Line 36:
Line 45: Line 37:
Line 47: Line 38:
Line 49: Line 39:
}}}

Raspi 400 mit SDR++ im [[Window]]

Basis: https://github.com/luigifcruz/pisdr-image PiSDR Version 6.1 (64-bits)

user lol

sudo apt install xdotool


Startskript für Autostart und Play

/home/lol/Desktop/cat launch-sdrpp-fs-start.sh

   1 #! /bin/bash
   2 sleep 5
   3 sdrpp &
   4 sleep 12
   5 xdotool search --all --onlyvisible --class sdr++ windowactivate
   6 sleep 1
   7 xdotool key "End" &
   8 sleep 1
   9 xdotool search --all --onlyvisible --class sdr++ windowactivate
  10 xdotool key "F11" &


Autostart on login

~/.config/autostart $ cat sdrppstartfs.desktop

   1 [Desktop Entry]
   2 Type=Application
   3 Name=sdrppfsstart
   4 Exec=/home/lol/Desktop/launch-sdrpp-fs-start.sh