Immutable Page History Attachments

Diff for "devradio-window-sdr"

Page name: Diff for "devradio-window-sdr"
Differences between revisions 3 and 4
Revision 3 as of 2023-09-21 19:33:57
Size: 767
Editor: docviper
Comment:
Revision 4 as of 2024-08-18 17:43:34
Size: 1028
Editor: TomK32
Comment:
Deletions are marked like this. Additions are marked like this.
Line 12: Line 12:
-----
==== Startskript für Autostart und Play ====
Line 15: Line 13:
== Startscript ==

Seit August 2024 ist sdrpp 2.0 installiert welches die ''--autostart'' option hat. Fullscreen ist über die Datei ''.config/openbox/lubuntu-rc.xml'' gelöst.

{{{#!highlight xml
<application name="SDR*" type="normal">
  <fullscreen>yes</fullscreen>
</application>
}}}

=== v1.0.4 ===

Raspi 400 mit SDR++

Im Schaufenster Window

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

user lol

sudo apt install xdotool

Startscript

Seit August 2024 ist sdrpp 2.0 installiert welches die --autostart option hat. Fullscreen ist über die Datei .config/openbox/lubuntu-rc.xml gelöst.

   1 <application name="SDR*" type="normal">
   2   <fullscreen>yes</fullscreen>
   3 </application>

v1.0.4

/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