├── .gitignore ├── LICENSE ├── README.md ├── RELEASES.md ├── logos ├── emcomm-tools-logo-white.png └── emcomm-tools-wallpaper.png ├── overlay ├── etc │ ├── adduser.conf │ ├── apt │ │ └── sources.list │ ├── chrony │ │ └── chrony.conf │ ├── crontab │ ├── default │ │ └── gpsd │ ├── environment │ ├── motd │ ├── skel │ │ ├── .bash_profile │ │ ├── .bashrc │ │ ├── .config │ │ │ ├── JS8Call.ini │ │ │ ├── QtTermTCP.ini │ │ │ ├── autostart │ │ │ │ └── conky.desktop │ │ │ ├── emcomm-tools │ │ │ │ ├── et-mode │ │ │ │ └── user.json │ │ │ ├── gnome-initial-setup-done │ │ │ ├── paracon │ │ │ │ └── paracon.cfg │ │ │ ├── pat │ │ │ │ └── config.json │ │ │ └── systemd │ │ │ │ └── user │ │ │ │ ├── default.target.wants │ │ │ │ ├── et-service-et-api.service │ │ │ │ └── et-service-mbtileserver.service │ │ │ │ ├── et-service-ardop.service │ │ │ │ ├── et-service-direwolf-300.service │ │ │ │ ├── et-service-direwolf-9600.service │ │ │ │ ├── et-service-direwolf-aprs-digipeater.service │ │ │ │ ├── et-service-direwolf-packet-digipeater.service │ │ │ │ ├── et-service-direwolf-simple.service │ │ │ │ ├── et-service-dump1090.service │ │ │ │ ├── et-service-et-api.service │ │ │ │ ├── et-service-mbtileserver.service │ │ │ │ ├── et-service-winlink-ardop.service │ │ │ │ ├── et-service-winlink-native-packet.service │ │ │ │ └── et-service-winlink-packet.service │ │ ├── .conkyrc │ │ ├── .fldigi │ │ │ └── fldigi_def.xml │ │ ├── .inputrc │ │ ├── .java │ │ │ └── .userPrefs │ │ │ │ └── org │ │ │ │ └── ka2ddo │ │ │ │ ├── prefs.xml │ │ │ │ └── yaac │ │ │ │ ├── Beacons │ │ │ │ ├── MYCALL │ │ │ │ │ └── prefs.xml │ │ │ │ └── prefs.xml │ │ │ │ ├── DigipeatAlias │ │ │ │ └── prefs.xml │ │ │ │ └── Ports │ │ │ │ └── prefs.xml │ │ ├── .local │ │ │ └── share │ │ │ │ ├── emcomm-tools │ │ │ │ ├── bbs-client │ │ │ │ │ └── paracon.cfg │ │ │ │ ├── mbtileserver │ │ │ │ │ └── tilesets │ │ │ │ │ │ └── README.md │ │ │ │ └── voacap │ │ │ │ │ ├── et-voacap.sh │ │ │ │ │ ├── fetch-ssn.sh │ │ │ │ │ ├── rel.pl │ │ │ │ │ └── ssn.txt │ │ │ │ └── pat │ │ │ │ └── rmslist.json │ │ ├── .navit │ │ │ ├── maps │ │ │ │ └── README.md │ │ │ ├── navit.xml │ │ │ ├── navit_layout_bike_shipped.xml │ │ │ ├── navit_layout_car_android_shipped.xml │ │ │ ├── navit_layout_car_dark_shipped.xml │ │ │ ├── navit_layout_car_generatedarkxml.sh │ │ │ ├── navit_layout_car_shipped.xml │ │ │ ├── navit_layout_car_simple_shipped.xml │ │ │ └── navit_layout_th_shipped.xml │ │ ├── add-ons │ │ │ ├── docs │ │ │ │ ├── create-doc-site.sh │ │ │ │ └── install-doc-tools.sh │ │ │ └── wine │ │ │ │ ├── .gitignore │ │ │ │ ├── 01-install-wine-deps.sh │ │ │ │ ├── 02-install-vara-hf.sh │ │ │ │ ├── 03-install-vara-fm.sh │ │ │ │ ├── 04-run-regedit.sh │ │ │ │ ├── 05-backup-wine-install.sh │ │ │ │ ├── README.md │ │ │ │ ├── common-checks.sh │ │ │ │ └── vara-downloader.sh │ │ ├── notes │ │ │ ├── bbs-admin.md │ │ │ └── offline-sites.md │ │ └── wikipedia │ │ │ └── README.md │ ├── sudoers.d │ │ └── et-rfcomm │ └── udev │ │ └── rules.d │ │ ├── 75-et-generic-remove.rules │ │ ├── 77-et-ftx1.rules │ │ ├── 78-et-ft991a.rules │ │ ├── 79-et-digirig-dr891.rules │ │ ├── 80-et-ic705.rules │ │ ├── 81-et-ic7200.rules │ │ ├── 82-et-ic7100.rules │ │ ├── 83-et-ic7300.rules │ │ ├── 85-brltty.rules │ │ ├── 88-et-qrplabs-qmx.rules │ │ ├── 89-et-bg2fx-fx4cr.rules │ │ ├── 89-et-xiegu-x6100.rules │ │ ├── 90-et-digirig-mobile.rules │ │ ├── 91-et-digirig-lite.rules │ │ ├── 92-et-u-blox.rules │ │ └── 99-et-sdr.rules ├── lib │ └── systemd │ │ └── system │ │ ├── gpsd.service │ │ ├── panasonic-brightness.service │ │ └── rigctld.service ├── opt │ └── emcomm-tools │ │ ├── bin │ │ ├── et-aircraft │ │ ├── et-ardop │ │ ├── et-audio │ │ ├── et-bbs-server │ │ ├── et-chattervox │ │ ├── et-common │ │ ├── et-conky │ │ ├── et-device-info │ │ ├── et-direwolf │ │ ├── et-dump1090 │ │ ├── et-fldigi │ │ ├── et-js8call │ │ ├── et-kill-all │ │ ├── et-kill-bt │ │ ├── et-log │ │ ├── et-mbtileserver │ │ ├── et-mirror.sh │ │ ├── et-mode │ │ ├── et-paracon │ │ ├── et-qttermtcp │ │ ├── et-radio │ │ ├── et-system-info │ │ ├── et-term │ │ ├── et-th-d74 │ │ ├── et-time │ │ ├── et-user │ │ ├── et-user-backup │ │ ├── et-user-restore │ │ ├── et-uv-pro │ │ ├── et-vara-fm │ │ ├── et-vara-hf │ │ ├── et-voacap │ │ ├── et-vr-n76 │ │ ├── et-winlink │ │ └── et-yaac │ │ ├── conf │ │ ├── radios.d │ │ │ ├── audio │ │ │ │ ├── bg2fx-fx4cr.sh │ │ │ │ ├── lab599-tx500mp.sh │ │ │ │ ├── xiegu-x6100.sh │ │ │ │ └── yaesu-ft857d.sh │ │ │ ├── bg2fx-fx4cr.json │ │ │ ├── btech-uvpro.bt.json │ │ │ ├── digirig-lite.json │ │ │ ├── digirig-mobile-no-cat.json │ │ │ ├── elecraft-kx2.json │ │ │ ├── icom-ic705.json │ │ │ ├── icom-ic7100.json │ │ │ ├── icom-ic7200.json │ │ │ ├── icom-ic7300.json │ │ │ ├── kenwood-thd74.bt.json │ │ │ ├── lab599-tx500mp.json │ │ │ ├── qrplabs-qmx.json │ │ │ ├── vgc-vrn76.bt.json │ │ │ ├── xiegu-g90.json │ │ │ ├── xiegu-x6100.json │ │ │ ├── yaesu-ft818nd.json │ │ │ ├── yaesu-ft857d.json │ │ │ ├── yaesu-ft891.json │ │ │ ├── yaesu-ft897d.json │ │ │ ├── yaesu-ft991a.json │ │ │ └── yaesu-ftx1.json │ │ └── template.d │ │ │ ├── bbs │ │ │ └── bpq32.simple.cfg │ │ │ ├── packet │ │ │ ├── direwolf.300.conf │ │ │ ├── direwolf.9600.conf │ │ │ ├── direwolf.aprs-digipeater.conf │ │ │ ├── direwolf.packet-digipeater.conf │ │ │ └── direwolf.simple.conf │ │ │ └── winlink │ │ │ ├── config.ardop.json │ │ │ ├── config.ax25-agw.json │ │ │ ├── config.ax25-native.json │ │ │ ├── config.vara-fm.json │ │ │ └── config.vara-hf.json │ │ └── sbin │ │ ├── panasonic-set-brightness.sh │ │ ├── udev-tester.sh │ │ ├── wrapper-gpsd.sh │ │ └── wrapper-rigctld.sh └── usr │ └── share │ ├── applications │ ├── et-aircraft.desktop │ └── js8call.desktop │ ├── glib-2.0 │ └── schemas │ │ └── 90_ubuntu-settings.gschema.override │ └── icons │ ├── emcomm-tools-icon-black-192.png │ ├── emcomm-tools-icon-black-512.png │ └── et-aircraft-icon-black-192.png ├── scripts ├── bootstrap.sh ├── configure-gnome.sh ├── configure-user.sh ├── download-et-maps.sh ├── download-osm-maps.sh ├── download-wikipedia.sh ├── env.sh ├── fix-panasonic-brightness.sh ├── functions.sh ├── install-ardop.sh ├── install-audio-tools.sh ├── install-base.sh ├── install-bbs-client.sh ├── install-bbs-server.sh ├── install-branding.sh ├── install-browser.sh ├── install-cat.sh ├── install-chattervox.sh ├── install-conky.sh ├── install-dev-tools.sh ├── install-dictionary.sh ├── install-direwolf.sh ├── install-doc-tools.sh ├── install-dump1090.sh ├── install-emcomm-tools.sh ├── install-et-aircraft.sh ├── install-et-api.sh ├── install-et-portaudio.sh ├── install-et-predict.sh ├── install-fldigi.sh ├── install-gis-tools.sh ├── install-gps.sh ├── install-hamlib.sh ├── install-js8call-dev-tools.sh ├── install-js8call.sh ├── install-mbtileserver.sh ├── install-mbutil.sh ├── install-navit.sh ├── install-packet.sh ├── install-pup.sh ├── install-python.sh ├── install-qttermtcp-from-source.sh ├── install-qttermtcp.sh ├── install-rf-analysis-tools.sh ├── install-sdr-tools.sh ├── install-ubuntu-image-tools-only.sh ├── install-udev.sh ├── install-voacap.sh ├── install-wikipedia.sh ├── install-wine.sh ├── install-winlink.sh ├── install-yaac.sh ├── install.sh ├── remove-packages.sh ├── update-apt.sh └── wine.txt ├── src └── et-portaudio │ ├── .gitignore │ ├── Makefile │ ├── README.md │ ├── gen-fldigi-cfg.sh │ └── main.c └── tests ├── run-test-suite.sh ├── test-ardop.sh ├── test-chattervox.sh ├── test-direwolf.sh ├── test-dump1090.sh ├── test-et-aircraft.sh ├── test-et-api.sh ├── test-et-portaudio.sh ├── test-et-predict.sh ├── test-fldigi.sh ├── test-gpsbabel.sh ├── test-hamlib.sh ├── test-java.sh ├── test-linbpq.sh ├── test-mbtileserver.sh ├── test-mbutil.sh ├── test-min.sh ├── test-paracon.sh ├── test-pup.sh ├── test-python.sh ├── test-qgis.sh ├── test-qttermtcp.sh ├── test-sqlite.sh ├── test-voacap.sh ├── test-winlink.sh └── test-yaac.sh /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/README.md -------------------------------------------------------------------------------- /RELEASES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/RELEASES.md -------------------------------------------------------------------------------- /logos/emcomm-tools-logo-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/logos/emcomm-tools-logo-white.png -------------------------------------------------------------------------------- /logos/emcomm-tools-wallpaper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/logos/emcomm-tools-wallpaper.png -------------------------------------------------------------------------------- /overlay/etc/adduser.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/etc/adduser.conf -------------------------------------------------------------------------------- /overlay/etc/apt/sources.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/etc/apt/sources.list -------------------------------------------------------------------------------- /overlay/etc/chrony/chrony.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/etc/chrony/chrony.conf -------------------------------------------------------------------------------- /overlay/etc/crontab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/etc/crontab -------------------------------------------------------------------------------- /overlay/etc/default/gpsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/etc/default/gpsd -------------------------------------------------------------------------------- /overlay/etc/environment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/etc/environment -------------------------------------------------------------------------------- /overlay/etc/motd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/etc/motd -------------------------------------------------------------------------------- /overlay/etc/skel/.bash_profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/etc/skel/.bash_profile -------------------------------------------------------------------------------- /overlay/etc/skel/.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/etc/skel/.bashrc -------------------------------------------------------------------------------- /overlay/etc/skel/.config/JS8Call.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/etc/skel/.config/JS8Call.ini -------------------------------------------------------------------------------- /overlay/etc/skel/.config/QtTermTCP.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/etc/skel/.config/QtTermTCP.ini -------------------------------------------------------------------------------- /overlay/etc/skel/.config/autostart/conky.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/etc/skel/.config/autostart/conky.desktop -------------------------------------------------------------------------------- /overlay/etc/skel/.config/emcomm-tools/et-mode: -------------------------------------------------------------------------------- 1 | none 2 | -------------------------------------------------------------------------------- /overlay/etc/skel/.config/emcomm-tools/user.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/etc/skel/.config/emcomm-tools/user.json -------------------------------------------------------------------------------- /overlay/etc/skel/.config/gnome-initial-setup-done: -------------------------------------------------------------------------------- 1 | yes -------------------------------------------------------------------------------- /overlay/etc/skel/.config/paracon/paracon.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/etc/skel/.config/paracon/paracon.cfg -------------------------------------------------------------------------------- /overlay/etc/skel/.config/pat/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/etc/skel/.config/pat/config.json -------------------------------------------------------------------------------- /overlay/etc/skel/.config/systemd/user/default.target.wants/et-service-et-api.service: -------------------------------------------------------------------------------- 1 | ../et-service-et-api.service -------------------------------------------------------------------------------- /overlay/etc/skel/.config/systemd/user/default.target.wants/et-service-mbtileserver.service: -------------------------------------------------------------------------------- 1 | ../et-service-mbtileserver.service -------------------------------------------------------------------------------- /overlay/etc/skel/.config/systemd/user/et-service-ardop.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/etc/skel/.config/systemd/user/et-service-ardop.service -------------------------------------------------------------------------------- /overlay/etc/skel/.config/systemd/user/et-service-direwolf-300.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/etc/skel/.config/systemd/user/et-service-direwolf-300.service -------------------------------------------------------------------------------- /overlay/etc/skel/.config/systemd/user/et-service-direwolf-9600.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/etc/skel/.config/systemd/user/et-service-direwolf-9600.service -------------------------------------------------------------------------------- /overlay/etc/skel/.config/systemd/user/et-service-direwolf-aprs-digipeater.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/etc/skel/.config/systemd/user/et-service-direwolf-aprs-digipeater.service -------------------------------------------------------------------------------- /overlay/etc/skel/.config/systemd/user/et-service-direwolf-packet-digipeater.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/etc/skel/.config/systemd/user/et-service-direwolf-packet-digipeater.service -------------------------------------------------------------------------------- /overlay/etc/skel/.config/systemd/user/et-service-direwolf-simple.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/etc/skel/.config/systemd/user/et-service-direwolf-simple.service -------------------------------------------------------------------------------- /overlay/etc/skel/.config/systemd/user/et-service-dump1090.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/etc/skel/.config/systemd/user/et-service-dump1090.service -------------------------------------------------------------------------------- /overlay/etc/skel/.config/systemd/user/et-service-et-api.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/etc/skel/.config/systemd/user/et-service-et-api.service -------------------------------------------------------------------------------- /overlay/etc/skel/.config/systemd/user/et-service-mbtileserver.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/etc/skel/.config/systemd/user/et-service-mbtileserver.service -------------------------------------------------------------------------------- /overlay/etc/skel/.config/systemd/user/et-service-winlink-ardop.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/etc/skel/.config/systemd/user/et-service-winlink-ardop.service -------------------------------------------------------------------------------- /overlay/etc/skel/.config/systemd/user/et-service-winlink-native-packet.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/etc/skel/.config/systemd/user/et-service-winlink-native-packet.service -------------------------------------------------------------------------------- /overlay/etc/skel/.config/systemd/user/et-service-winlink-packet.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/etc/skel/.config/systemd/user/et-service-winlink-packet.service -------------------------------------------------------------------------------- /overlay/etc/skel/.conkyrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/etc/skel/.conkyrc -------------------------------------------------------------------------------- /overlay/etc/skel/.fldigi/fldigi_def.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/etc/skel/.fldigi/fldigi_def.xml -------------------------------------------------------------------------------- /overlay/etc/skel/.inputrc: -------------------------------------------------------------------------------- 1 | set bell-style none 2 | -------------------------------------------------------------------------------- /overlay/etc/skel/.java/.userPrefs/org/ka2ddo/prefs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/etc/skel/.java/.userPrefs/org/ka2ddo/prefs.xml -------------------------------------------------------------------------------- /overlay/etc/skel/.java/.userPrefs/org/ka2ddo/yaac/Beacons/MYCALL/prefs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/etc/skel/.java/.userPrefs/org/ka2ddo/yaac/Beacons/MYCALL/prefs.xml -------------------------------------------------------------------------------- /overlay/etc/skel/.java/.userPrefs/org/ka2ddo/yaac/Beacons/prefs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/etc/skel/.java/.userPrefs/org/ka2ddo/yaac/Beacons/prefs.xml -------------------------------------------------------------------------------- /overlay/etc/skel/.java/.userPrefs/org/ka2ddo/yaac/DigipeatAlias/prefs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/etc/skel/.java/.userPrefs/org/ka2ddo/yaac/DigipeatAlias/prefs.xml -------------------------------------------------------------------------------- /overlay/etc/skel/.java/.userPrefs/org/ka2ddo/yaac/Ports/prefs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/etc/skel/.java/.userPrefs/org/ka2ddo/yaac/Ports/prefs.xml -------------------------------------------------------------------------------- /overlay/etc/skel/.local/share/emcomm-tools/bbs-client/paracon.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/etc/skel/.local/share/emcomm-tools/bbs-client/paracon.cfg -------------------------------------------------------------------------------- /overlay/etc/skel/.local/share/emcomm-tools/mbtileserver/tilesets/README.md: -------------------------------------------------------------------------------- 1 | Copy your `.mbtiles` file here. 2 | -------------------------------------------------------------------------------- /overlay/etc/skel/.local/share/emcomm-tools/voacap/et-voacap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/etc/skel/.local/share/emcomm-tools/voacap/et-voacap.sh -------------------------------------------------------------------------------- /overlay/etc/skel/.local/share/emcomm-tools/voacap/fetch-ssn.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/etc/skel/.local/share/emcomm-tools/voacap/fetch-ssn.sh -------------------------------------------------------------------------------- /overlay/etc/skel/.local/share/emcomm-tools/voacap/rel.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/etc/skel/.local/share/emcomm-tools/voacap/rel.pl -------------------------------------------------------------------------------- /overlay/etc/skel/.local/share/emcomm-tools/voacap/ssn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/etc/skel/.local/share/emcomm-tools/voacap/ssn.txt -------------------------------------------------------------------------------- /overlay/etc/skel/.local/share/pat/rmslist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/etc/skel/.local/share/pat/rmslist.json -------------------------------------------------------------------------------- /overlay/etc/skel/.navit/maps/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/etc/skel/.navit/maps/README.md -------------------------------------------------------------------------------- /overlay/etc/skel/.navit/navit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/etc/skel/.navit/navit.xml -------------------------------------------------------------------------------- /overlay/etc/skel/.navit/navit_layout_bike_shipped.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/etc/skel/.navit/navit_layout_bike_shipped.xml -------------------------------------------------------------------------------- /overlay/etc/skel/.navit/navit_layout_car_android_shipped.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/etc/skel/.navit/navit_layout_car_android_shipped.xml -------------------------------------------------------------------------------- /overlay/etc/skel/.navit/navit_layout_car_dark_shipped.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/etc/skel/.navit/navit_layout_car_dark_shipped.xml -------------------------------------------------------------------------------- /overlay/etc/skel/.navit/navit_layout_car_generatedarkxml.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/etc/skel/.navit/navit_layout_car_generatedarkxml.sh -------------------------------------------------------------------------------- /overlay/etc/skel/.navit/navit_layout_car_shipped.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/etc/skel/.navit/navit_layout_car_shipped.xml -------------------------------------------------------------------------------- /overlay/etc/skel/.navit/navit_layout_car_simple_shipped.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/etc/skel/.navit/navit_layout_car_simple_shipped.xml -------------------------------------------------------------------------------- /overlay/etc/skel/.navit/navit_layout_th_shipped.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/etc/skel/.navit/navit_layout_th_shipped.xml -------------------------------------------------------------------------------- /overlay/etc/skel/add-ons/docs/create-doc-site.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/etc/skel/add-ons/docs/create-doc-site.sh -------------------------------------------------------------------------------- /overlay/etc/skel/add-ons/docs/install-doc-tools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/etc/skel/add-ons/docs/install-doc-tools.sh -------------------------------------------------------------------------------- /overlay/etc/skel/add-ons/wine/.gitignore: -------------------------------------------------------------------------------- 1 | *.exe 2 | *.zip 3 | -------------------------------------------------------------------------------- /overlay/etc/skel/add-ons/wine/01-install-wine-deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/etc/skel/add-ons/wine/01-install-wine-deps.sh -------------------------------------------------------------------------------- /overlay/etc/skel/add-ons/wine/02-install-vara-hf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/etc/skel/add-ons/wine/02-install-vara-hf.sh -------------------------------------------------------------------------------- /overlay/etc/skel/add-ons/wine/03-install-vara-fm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/etc/skel/add-ons/wine/03-install-vara-fm.sh -------------------------------------------------------------------------------- /overlay/etc/skel/add-ons/wine/04-run-regedit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/etc/skel/add-ons/wine/04-run-regedit.sh -------------------------------------------------------------------------------- /overlay/etc/skel/add-ons/wine/05-backup-wine-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/etc/skel/add-ons/wine/05-backup-wine-install.sh -------------------------------------------------------------------------------- /overlay/etc/skel/add-ons/wine/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/etc/skel/add-ons/wine/README.md -------------------------------------------------------------------------------- /overlay/etc/skel/add-ons/wine/common-checks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/etc/skel/add-ons/wine/common-checks.sh -------------------------------------------------------------------------------- /overlay/etc/skel/add-ons/wine/vara-downloader.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/etc/skel/add-ons/wine/vara-downloader.sh -------------------------------------------------------------------------------- /overlay/etc/skel/notes/bbs-admin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/etc/skel/notes/bbs-admin.md -------------------------------------------------------------------------------- /overlay/etc/skel/notes/offline-sites.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/etc/skel/notes/offline-sites.md -------------------------------------------------------------------------------- /overlay/etc/skel/wikipedia/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/etc/skel/wikipedia/README.md -------------------------------------------------------------------------------- /overlay/etc/sudoers.d/et-rfcomm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/etc/sudoers.d/et-rfcomm -------------------------------------------------------------------------------- /overlay/etc/udev/rules.d/75-et-generic-remove.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/etc/udev/rules.d/75-et-generic-remove.rules -------------------------------------------------------------------------------- /overlay/etc/udev/rules.d/77-et-ftx1.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/etc/udev/rules.d/77-et-ftx1.rules -------------------------------------------------------------------------------- /overlay/etc/udev/rules.d/78-et-ft991a.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/etc/udev/rules.d/78-et-ft991a.rules -------------------------------------------------------------------------------- /overlay/etc/udev/rules.d/79-et-digirig-dr891.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/etc/udev/rules.d/79-et-digirig-dr891.rules -------------------------------------------------------------------------------- /overlay/etc/udev/rules.d/80-et-ic705.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/etc/udev/rules.d/80-et-ic705.rules -------------------------------------------------------------------------------- /overlay/etc/udev/rules.d/81-et-ic7200.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/etc/udev/rules.d/81-et-ic7200.rules -------------------------------------------------------------------------------- /overlay/etc/udev/rules.d/82-et-ic7100.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/etc/udev/rules.d/82-et-ic7100.rules -------------------------------------------------------------------------------- /overlay/etc/udev/rules.d/83-et-ic7300.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/etc/udev/rules.d/83-et-ic7300.rules -------------------------------------------------------------------------------- /overlay/etc/udev/rules.d/85-brltty.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/etc/udev/rules.d/85-brltty.rules -------------------------------------------------------------------------------- /overlay/etc/udev/rules.d/88-et-qrplabs-qmx.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/etc/udev/rules.d/88-et-qrplabs-qmx.rules -------------------------------------------------------------------------------- /overlay/etc/udev/rules.d/89-et-bg2fx-fx4cr.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/etc/udev/rules.d/89-et-bg2fx-fx4cr.rules -------------------------------------------------------------------------------- /overlay/etc/udev/rules.d/89-et-xiegu-x6100.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/etc/udev/rules.d/89-et-xiegu-x6100.rules -------------------------------------------------------------------------------- /overlay/etc/udev/rules.d/90-et-digirig-mobile.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/etc/udev/rules.d/90-et-digirig-mobile.rules -------------------------------------------------------------------------------- /overlay/etc/udev/rules.d/91-et-digirig-lite.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/etc/udev/rules.d/91-et-digirig-lite.rules -------------------------------------------------------------------------------- /overlay/etc/udev/rules.d/92-et-u-blox.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/etc/udev/rules.d/92-et-u-blox.rules -------------------------------------------------------------------------------- /overlay/etc/udev/rules.d/99-et-sdr.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/etc/udev/rules.d/99-et-sdr.rules -------------------------------------------------------------------------------- /overlay/lib/systemd/system/gpsd.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/lib/systemd/system/gpsd.service -------------------------------------------------------------------------------- /overlay/lib/systemd/system/panasonic-brightness.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/lib/systemd/system/panasonic-brightness.service -------------------------------------------------------------------------------- /overlay/lib/systemd/system/rigctld.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/lib/systemd/system/rigctld.service -------------------------------------------------------------------------------- /overlay/opt/emcomm-tools/bin/et-aircraft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/opt/emcomm-tools/bin/et-aircraft -------------------------------------------------------------------------------- /overlay/opt/emcomm-tools/bin/et-ardop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/opt/emcomm-tools/bin/et-ardop -------------------------------------------------------------------------------- /overlay/opt/emcomm-tools/bin/et-audio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/opt/emcomm-tools/bin/et-audio -------------------------------------------------------------------------------- /overlay/opt/emcomm-tools/bin/et-bbs-server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/opt/emcomm-tools/bin/et-bbs-server -------------------------------------------------------------------------------- /overlay/opt/emcomm-tools/bin/et-chattervox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/opt/emcomm-tools/bin/et-chattervox -------------------------------------------------------------------------------- /overlay/opt/emcomm-tools/bin/et-common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/opt/emcomm-tools/bin/et-common -------------------------------------------------------------------------------- /overlay/opt/emcomm-tools/bin/et-conky: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/opt/emcomm-tools/bin/et-conky -------------------------------------------------------------------------------- /overlay/opt/emcomm-tools/bin/et-device-info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/opt/emcomm-tools/bin/et-device-info -------------------------------------------------------------------------------- /overlay/opt/emcomm-tools/bin/et-direwolf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/opt/emcomm-tools/bin/et-direwolf -------------------------------------------------------------------------------- /overlay/opt/emcomm-tools/bin/et-dump1090: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/opt/emcomm-tools/bin/et-dump1090 -------------------------------------------------------------------------------- /overlay/opt/emcomm-tools/bin/et-fldigi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/opt/emcomm-tools/bin/et-fldigi -------------------------------------------------------------------------------- /overlay/opt/emcomm-tools/bin/et-js8call: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/opt/emcomm-tools/bin/et-js8call -------------------------------------------------------------------------------- /overlay/opt/emcomm-tools/bin/et-kill-all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/opt/emcomm-tools/bin/et-kill-all -------------------------------------------------------------------------------- /overlay/opt/emcomm-tools/bin/et-kill-bt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/opt/emcomm-tools/bin/et-kill-bt -------------------------------------------------------------------------------- /overlay/opt/emcomm-tools/bin/et-log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/opt/emcomm-tools/bin/et-log -------------------------------------------------------------------------------- /overlay/opt/emcomm-tools/bin/et-mbtileserver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/opt/emcomm-tools/bin/et-mbtileserver -------------------------------------------------------------------------------- /overlay/opt/emcomm-tools/bin/et-mirror.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/opt/emcomm-tools/bin/et-mirror.sh -------------------------------------------------------------------------------- /overlay/opt/emcomm-tools/bin/et-mode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/opt/emcomm-tools/bin/et-mode -------------------------------------------------------------------------------- /overlay/opt/emcomm-tools/bin/et-paracon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/opt/emcomm-tools/bin/et-paracon -------------------------------------------------------------------------------- /overlay/opt/emcomm-tools/bin/et-qttermtcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/opt/emcomm-tools/bin/et-qttermtcp -------------------------------------------------------------------------------- /overlay/opt/emcomm-tools/bin/et-radio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/opt/emcomm-tools/bin/et-radio -------------------------------------------------------------------------------- /overlay/opt/emcomm-tools/bin/et-system-info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/opt/emcomm-tools/bin/et-system-info -------------------------------------------------------------------------------- /overlay/opt/emcomm-tools/bin/et-term: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/opt/emcomm-tools/bin/et-term -------------------------------------------------------------------------------- /overlay/opt/emcomm-tools/bin/et-th-d74: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/opt/emcomm-tools/bin/et-th-d74 -------------------------------------------------------------------------------- /overlay/opt/emcomm-tools/bin/et-time: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/opt/emcomm-tools/bin/et-time -------------------------------------------------------------------------------- /overlay/opt/emcomm-tools/bin/et-user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/opt/emcomm-tools/bin/et-user -------------------------------------------------------------------------------- /overlay/opt/emcomm-tools/bin/et-user-backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/opt/emcomm-tools/bin/et-user-backup -------------------------------------------------------------------------------- /overlay/opt/emcomm-tools/bin/et-user-restore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/opt/emcomm-tools/bin/et-user-restore -------------------------------------------------------------------------------- /overlay/opt/emcomm-tools/bin/et-uv-pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/opt/emcomm-tools/bin/et-uv-pro -------------------------------------------------------------------------------- /overlay/opt/emcomm-tools/bin/et-vara-fm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/opt/emcomm-tools/bin/et-vara-fm -------------------------------------------------------------------------------- /overlay/opt/emcomm-tools/bin/et-vara-hf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/opt/emcomm-tools/bin/et-vara-hf -------------------------------------------------------------------------------- /overlay/opt/emcomm-tools/bin/et-voacap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/opt/emcomm-tools/bin/et-voacap -------------------------------------------------------------------------------- /overlay/opt/emcomm-tools/bin/et-vr-n76: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/opt/emcomm-tools/bin/et-vr-n76 -------------------------------------------------------------------------------- /overlay/opt/emcomm-tools/bin/et-winlink: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/opt/emcomm-tools/bin/et-winlink -------------------------------------------------------------------------------- /overlay/opt/emcomm-tools/bin/et-yaac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/opt/emcomm-tools/bin/et-yaac -------------------------------------------------------------------------------- /overlay/opt/emcomm-tools/conf/radios.d/audio/bg2fx-fx4cr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/opt/emcomm-tools/conf/radios.d/audio/bg2fx-fx4cr.sh -------------------------------------------------------------------------------- /overlay/opt/emcomm-tools/conf/radios.d/audio/lab599-tx500mp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/opt/emcomm-tools/conf/radios.d/audio/lab599-tx500mp.sh -------------------------------------------------------------------------------- /overlay/opt/emcomm-tools/conf/radios.d/audio/xiegu-x6100.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/opt/emcomm-tools/conf/radios.d/audio/xiegu-x6100.sh -------------------------------------------------------------------------------- /overlay/opt/emcomm-tools/conf/radios.d/audio/yaesu-ft857d.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/opt/emcomm-tools/conf/radios.d/audio/yaesu-ft857d.sh -------------------------------------------------------------------------------- /overlay/opt/emcomm-tools/conf/radios.d/bg2fx-fx4cr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/opt/emcomm-tools/conf/radios.d/bg2fx-fx4cr.json -------------------------------------------------------------------------------- /overlay/opt/emcomm-tools/conf/radios.d/btech-uvpro.bt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/opt/emcomm-tools/conf/radios.d/btech-uvpro.bt.json -------------------------------------------------------------------------------- /overlay/opt/emcomm-tools/conf/radios.d/digirig-lite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/opt/emcomm-tools/conf/radios.d/digirig-lite.json -------------------------------------------------------------------------------- /overlay/opt/emcomm-tools/conf/radios.d/digirig-mobile-no-cat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/opt/emcomm-tools/conf/radios.d/digirig-mobile-no-cat.json -------------------------------------------------------------------------------- /overlay/opt/emcomm-tools/conf/radios.d/elecraft-kx2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/opt/emcomm-tools/conf/radios.d/elecraft-kx2.json -------------------------------------------------------------------------------- /overlay/opt/emcomm-tools/conf/radios.d/icom-ic705.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/opt/emcomm-tools/conf/radios.d/icom-ic705.json -------------------------------------------------------------------------------- /overlay/opt/emcomm-tools/conf/radios.d/icom-ic7100.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/opt/emcomm-tools/conf/radios.d/icom-ic7100.json -------------------------------------------------------------------------------- /overlay/opt/emcomm-tools/conf/radios.d/icom-ic7200.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/opt/emcomm-tools/conf/radios.d/icom-ic7200.json -------------------------------------------------------------------------------- /overlay/opt/emcomm-tools/conf/radios.d/icom-ic7300.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/opt/emcomm-tools/conf/radios.d/icom-ic7300.json -------------------------------------------------------------------------------- /overlay/opt/emcomm-tools/conf/radios.d/kenwood-thd74.bt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/opt/emcomm-tools/conf/radios.d/kenwood-thd74.bt.json -------------------------------------------------------------------------------- /overlay/opt/emcomm-tools/conf/radios.d/lab599-tx500mp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/opt/emcomm-tools/conf/radios.d/lab599-tx500mp.json -------------------------------------------------------------------------------- /overlay/opt/emcomm-tools/conf/radios.d/qrplabs-qmx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/opt/emcomm-tools/conf/radios.d/qrplabs-qmx.json -------------------------------------------------------------------------------- /overlay/opt/emcomm-tools/conf/radios.d/vgc-vrn76.bt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/opt/emcomm-tools/conf/radios.d/vgc-vrn76.bt.json -------------------------------------------------------------------------------- /overlay/opt/emcomm-tools/conf/radios.d/xiegu-g90.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/opt/emcomm-tools/conf/radios.d/xiegu-g90.json -------------------------------------------------------------------------------- /overlay/opt/emcomm-tools/conf/radios.d/xiegu-x6100.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/opt/emcomm-tools/conf/radios.d/xiegu-x6100.json -------------------------------------------------------------------------------- /overlay/opt/emcomm-tools/conf/radios.d/yaesu-ft818nd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/opt/emcomm-tools/conf/radios.d/yaesu-ft818nd.json -------------------------------------------------------------------------------- /overlay/opt/emcomm-tools/conf/radios.d/yaesu-ft857d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/opt/emcomm-tools/conf/radios.d/yaesu-ft857d.json -------------------------------------------------------------------------------- /overlay/opt/emcomm-tools/conf/radios.d/yaesu-ft891.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/opt/emcomm-tools/conf/radios.d/yaesu-ft891.json -------------------------------------------------------------------------------- /overlay/opt/emcomm-tools/conf/radios.d/yaesu-ft897d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/opt/emcomm-tools/conf/radios.d/yaesu-ft897d.json -------------------------------------------------------------------------------- /overlay/opt/emcomm-tools/conf/radios.d/yaesu-ft991a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/opt/emcomm-tools/conf/radios.d/yaesu-ft991a.json -------------------------------------------------------------------------------- /overlay/opt/emcomm-tools/conf/radios.d/yaesu-ftx1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/opt/emcomm-tools/conf/radios.d/yaesu-ftx1.json -------------------------------------------------------------------------------- /overlay/opt/emcomm-tools/conf/template.d/bbs/bpq32.simple.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/opt/emcomm-tools/conf/template.d/bbs/bpq32.simple.cfg -------------------------------------------------------------------------------- /overlay/opt/emcomm-tools/conf/template.d/packet/direwolf.300.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/opt/emcomm-tools/conf/template.d/packet/direwolf.300.conf -------------------------------------------------------------------------------- /overlay/opt/emcomm-tools/conf/template.d/packet/direwolf.9600.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/opt/emcomm-tools/conf/template.d/packet/direwolf.9600.conf -------------------------------------------------------------------------------- /overlay/opt/emcomm-tools/conf/template.d/packet/direwolf.aprs-digipeater.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/opt/emcomm-tools/conf/template.d/packet/direwolf.aprs-digipeater.conf -------------------------------------------------------------------------------- /overlay/opt/emcomm-tools/conf/template.d/packet/direwolf.packet-digipeater.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/opt/emcomm-tools/conf/template.d/packet/direwolf.packet-digipeater.conf -------------------------------------------------------------------------------- /overlay/opt/emcomm-tools/conf/template.d/packet/direwolf.simple.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/opt/emcomm-tools/conf/template.d/packet/direwolf.simple.conf -------------------------------------------------------------------------------- /overlay/opt/emcomm-tools/conf/template.d/winlink/config.ardop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/opt/emcomm-tools/conf/template.d/winlink/config.ardop.json -------------------------------------------------------------------------------- /overlay/opt/emcomm-tools/conf/template.d/winlink/config.ax25-agw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/opt/emcomm-tools/conf/template.d/winlink/config.ax25-agw.json -------------------------------------------------------------------------------- /overlay/opt/emcomm-tools/conf/template.d/winlink/config.ax25-native.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/opt/emcomm-tools/conf/template.d/winlink/config.ax25-native.json -------------------------------------------------------------------------------- /overlay/opt/emcomm-tools/conf/template.d/winlink/config.vara-fm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/opt/emcomm-tools/conf/template.d/winlink/config.vara-fm.json -------------------------------------------------------------------------------- /overlay/opt/emcomm-tools/conf/template.d/winlink/config.vara-hf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/opt/emcomm-tools/conf/template.d/winlink/config.vara-hf.json -------------------------------------------------------------------------------- /overlay/opt/emcomm-tools/sbin/panasonic-set-brightness.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/opt/emcomm-tools/sbin/panasonic-set-brightness.sh -------------------------------------------------------------------------------- /overlay/opt/emcomm-tools/sbin/udev-tester.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/opt/emcomm-tools/sbin/udev-tester.sh -------------------------------------------------------------------------------- /overlay/opt/emcomm-tools/sbin/wrapper-gpsd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/opt/emcomm-tools/sbin/wrapper-gpsd.sh -------------------------------------------------------------------------------- /overlay/opt/emcomm-tools/sbin/wrapper-rigctld.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/opt/emcomm-tools/sbin/wrapper-rigctld.sh -------------------------------------------------------------------------------- /overlay/usr/share/applications/et-aircraft.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/usr/share/applications/et-aircraft.desktop -------------------------------------------------------------------------------- /overlay/usr/share/applications/js8call.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/usr/share/applications/js8call.desktop -------------------------------------------------------------------------------- /overlay/usr/share/glib-2.0/schemas/90_ubuntu-settings.gschema.override: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/usr/share/glib-2.0/schemas/90_ubuntu-settings.gschema.override -------------------------------------------------------------------------------- /overlay/usr/share/icons/emcomm-tools-icon-black-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/usr/share/icons/emcomm-tools-icon-black-192.png -------------------------------------------------------------------------------- /overlay/usr/share/icons/emcomm-tools-icon-black-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/usr/share/icons/emcomm-tools-icon-black-512.png -------------------------------------------------------------------------------- /overlay/usr/share/icons/et-aircraft-icon-black-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/overlay/usr/share/icons/et-aircraft-icon-black-192.png -------------------------------------------------------------------------------- /scripts/bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/scripts/bootstrap.sh -------------------------------------------------------------------------------- /scripts/configure-gnome.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/scripts/configure-gnome.sh -------------------------------------------------------------------------------- /scripts/configure-user.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/scripts/configure-user.sh -------------------------------------------------------------------------------- /scripts/download-et-maps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/scripts/download-et-maps.sh -------------------------------------------------------------------------------- /scripts/download-osm-maps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/scripts/download-osm-maps.sh -------------------------------------------------------------------------------- /scripts/download-wikipedia.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/scripts/download-wikipedia.sh -------------------------------------------------------------------------------- /scripts/env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/scripts/env.sh -------------------------------------------------------------------------------- /scripts/fix-panasonic-brightness.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/scripts/fix-panasonic-brightness.sh -------------------------------------------------------------------------------- /scripts/functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/scripts/functions.sh -------------------------------------------------------------------------------- /scripts/install-ardop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/scripts/install-ardop.sh -------------------------------------------------------------------------------- /scripts/install-audio-tools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/scripts/install-audio-tools.sh -------------------------------------------------------------------------------- /scripts/install-base.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/scripts/install-base.sh -------------------------------------------------------------------------------- /scripts/install-bbs-client.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/scripts/install-bbs-client.sh -------------------------------------------------------------------------------- /scripts/install-bbs-server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/scripts/install-bbs-server.sh -------------------------------------------------------------------------------- /scripts/install-branding.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/scripts/install-branding.sh -------------------------------------------------------------------------------- /scripts/install-browser.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/scripts/install-browser.sh -------------------------------------------------------------------------------- /scripts/install-cat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/scripts/install-cat.sh -------------------------------------------------------------------------------- /scripts/install-chattervox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/scripts/install-chattervox.sh -------------------------------------------------------------------------------- /scripts/install-conky.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/scripts/install-conky.sh -------------------------------------------------------------------------------- /scripts/install-dev-tools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/scripts/install-dev-tools.sh -------------------------------------------------------------------------------- /scripts/install-dictionary.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/scripts/install-dictionary.sh -------------------------------------------------------------------------------- /scripts/install-direwolf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/scripts/install-direwolf.sh -------------------------------------------------------------------------------- /scripts/install-doc-tools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/scripts/install-doc-tools.sh -------------------------------------------------------------------------------- /scripts/install-dump1090.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/scripts/install-dump1090.sh -------------------------------------------------------------------------------- /scripts/install-emcomm-tools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/scripts/install-emcomm-tools.sh -------------------------------------------------------------------------------- /scripts/install-et-aircraft.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/scripts/install-et-aircraft.sh -------------------------------------------------------------------------------- /scripts/install-et-api.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/scripts/install-et-api.sh -------------------------------------------------------------------------------- /scripts/install-et-portaudio.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/scripts/install-et-portaudio.sh -------------------------------------------------------------------------------- /scripts/install-et-predict.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/scripts/install-et-predict.sh -------------------------------------------------------------------------------- /scripts/install-fldigi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/scripts/install-fldigi.sh -------------------------------------------------------------------------------- /scripts/install-gis-tools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/scripts/install-gis-tools.sh -------------------------------------------------------------------------------- /scripts/install-gps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/scripts/install-gps.sh -------------------------------------------------------------------------------- /scripts/install-hamlib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/scripts/install-hamlib.sh -------------------------------------------------------------------------------- /scripts/install-js8call-dev-tools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/scripts/install-js8call-dev-tools.sh -------------------------------------------------------------------------------- /scripts/install-js8call.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/scripts/install-js8call.sh -------------------------------------------------------------------------------- /scripts/install-mbtileserver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/scripts/install-mbtileserver.sh -------------------------------------------------------------------------------- /scripts/install-mbutil.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/scripts/install-mbutil.sh -------------------------------------------------------------------------------- /scripts/install-navit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/scripts/install-navit.sh -------------------------------------------------------------------------------- /scripts/install-packet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/scripts/install-packet.sh -------------------------------------------------------------------------------- /scripts/install-pup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/scripts/install-pup.sh -------------------------------------------------------------------------------- /scripts/install-python.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/scripts/install-python.sh -------------------------------------------------------------------------------- /scripts/install-qttermtcp-from-source.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/scripts/install-qttermtcp-from-source.sh -------------------------------------------------------------------------------- /scripts/install-qttermtcp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/scripts/install-qttermtcp.sh -------------------------------------------------------------------------------- /scripts/install-rf-analysis-tools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/scripts/install-rf-analysis-tools.sh -------------------------------------------------------------------------------- /scripts/install-sdr-tools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/scripts/install-sdr-tools.sh -------------------------------------------------------------------------------- /scripts/install-ubuntu-image-tools-only.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/scripts/install-ubuntu-image-tools-only.sh -------------------------------------------------------------------------------- /scripts/install-udev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/scripts/install-udev.sh -------------------------------------------------------------------------------- /scripts/install-voacap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/scripts/install-voacap.sh -------------------------------------------------------------------------------- /scripts/install-wikipedia.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/scripts/install-wikipedia.sh -------------------------------------------------------------------------------- /scripts/install-wine.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/scripts/install-wine.sh -------------------------------------------------------------------------------- /scripts/install-winlink.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/scripts/install-winlink.sh -------------------------------------------------------------------------------- /scripts/install-yaac.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/scripts/install-yaac.sh -------------------------------------------------------------------------------- /scripts/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/scripts/install.sh -------------------------------------------------------------------------------- /scripts/remove-packages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/scripts/remove-packages.sh -------------------------------------------------------------------------------- /scripts/update-apt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/scripts/update-apt.sh -------------------------------------------------------------------------------- /scripts/wine.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/scripts/wine.txt -------------------------------------------------------------------------------- /src/et-portaudio/.gitignore: -------------------------------------------------------------------------------- 1 | et-portaudio 2 | *.o 3 | -------------------------------------------------------------------------------- /src/et-portaudio/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/src/et-portaudio/Makefile -------------------------------------------------------------------------------- /src/et-portaudio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/src/et-portaudio/README.md -------------------------------------------------------------------------------- /src/et-portaudio/gen-fldigi-cfg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/src/et-portaudio/gen-fldigi-cfg.sh -------------------------------------------------------------------------------- /src/et-portaudio/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/src/et-portaudio/main.c -------------------------------------------------------------------------------- /tests/run-test-suite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/tests/run-test-suite.sh -------------------------------------------------------------------------------- /tests/test-ardop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/tests/test-ardop.sh -------------------------------------------------------------------------------- /tests/test-chattervox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/tests/test-chattervox.sh -------------------------------------------------------------------------------- /tests/test-direwolf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/tests/test-direwolf.sh -------------------------------------------------------------------------------- /tests/test-dump1090.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/tests/test-dump1090.sh -------------------------------------------------------------------------------- /tests/test-et-aircraft.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/tests/test-et-aircraft.sh -------------------------------------------------------------------------------- /tests/test-et-api.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/tests/test-et-api.sh -------------------------------------------------------------------------------- /tests/test-et-portaudio.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/tests/test-et-portaudio.sh -------------------------------------------------------------------------------- /tests/test-et-predict.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/tests/test-et-predict.sh -------------------------------------------------------------------------------- /tests/test-fldigi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/tests/test-fldigi.sh -------------------------------------------------------------------------------- /tests/test-gpsbabel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/tests/test-gpsbabel.sh -------------------------------------------------------------------------------- /tests/test-hamlib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/tests/test-hamlib.sh -------------------------------------------------------------------------------- /tests/test-java.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/tests/test-java.sh -------------------------------------------------------------------------------- /tests/test-linbpq.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/tests/test-linbpq.sh -------------------------------------------------------------------------------- /tests/test-mbtileserver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/tests/test-mbtileserver.sh -------------------------------------------------------------------------------- /tests/test-mbutil.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/tests/test-mbutil.sh -------------------------------------------------------------------------------- /tests/test-min.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/tests/test-min.sh -------------------------------------------------------------------------------- /tests/test-paracon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/tests/test-paracon.sh -------------------------------------------------------------------------------- /tests/test-pup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/tests/test-pup.sh -------------------------------------------------------------------------------- /tests/test-python.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/tests/test-python.sh -------------------------------------------------------------------------------- /tests/test-qgis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/tests/test-qgis.sh -------------------------------------------------------------------------------- /tests/test-qttermtcp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/tests/test-qttermtcp.sh -------------------------------------------------------------------------------- /tests/test-sqlite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/tests/test-sqlite.sh -------------------------------------------------------------------------------- /tests/test-voacap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/tests/test-voacap.sh -------------------------------------------------------------------------------- /tests/test-winlink.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/tests/test-winlink.sh -------------------------------------------------------------------------------- /tests/test-yaac.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetechprepper/emcomm-tools-os-community/HEAD/tests/test-yaac.sh --------------------------------------------------------------------------------