├── LICENSE.txt ├── README.md ├── boot ├── config.txt ├── pieeprom.sig ├── pieeprom.upd └── recovery.bin ├── config ├── config_backup_items.txt ├── data_backup_items.txt ├── default_midi_profile.sh ├── engine_config.json ├── keybinding │ ├── kpnum_jofe.yaml │ └── qwerty_riban.yaml ├── sidechain.json ├── wiring-profiles │ ├── v4_cc_switches │ ├── v4_stage │ ├── v4_studio │ ├── v5 │ ├── v5_zynface │ └── z2 ├── zynthian_envars_Custom.sh ├── zynthian_envars_V1.sh ├── zynthian_envars_V2.sh ├── zynthian_envars_V4.sh ├── zynthian_envars_V5.sh ├── zynthian_envars_V5_pi5.sh └── zynthian_envars_Z2.sh ├── custom ├── display │ ├── MHS35 480x320 │ │ └── boot │ │ │ └── overlays │ │ │ ├── mhs35-overlay.dtb │ │ │ └── mhs35.dtbo │ ├── PiScreen 3.5 (v2) │ │ ├── boot │ │ │ └── overlays │ │ │ │ ├── piscreen2r-backlight.dtbo │ │ │ │ ├── piscreen2r-backlight.dts │ │ │ │ ├── piscreen2r-notouch.dtbo │ │ │ │ └── piscreen2r-notouch.dts │ │ └── calibration.conf │ ├── PiTFT 2.8 Resistive │ │ ├── calibration.conf │ │ ├── config │ │ │ └── zynthian_custom_config.sh │ │ └── etc │ │ │ ├── modules │ │ │ └── udev │ │ │ └── rules.d │ │ │ └── 95-stmpe.rules │ ├── Sainsmart 1.8 │ │ └── boot │ │ │ └── overlays │ │ │ ├── sainsmart18.dtbo │ │ │ └── sainsmart18.dts │ ├── Z2 Display │ │ ├── boot │ │ │ └── overlays │ │ │ │ ├── goodix_z2.dtbo │ │ │ │ └── goodix_z2.dts │ │ ├── calibration.conf │ │ └── firmware │ │ │ └── goodix_911_cfg.bin │ └── ZynScreen 3.5 (v1) │ │ ├── boot │ │ └── overlays │ │ │ ├── piscreen2r-backlight.dtbo │ │ │ ├── piscreen2r-backlight.dts │ │ │ ├── piscreen2r-notouch.dtbo │ │ │ └── piscreen2r-notouch.dts │ │ └── calibration.conf ├── skel │ ├── config │ │ └── zynthian_custom_config.sh │ └── etc │ │ └── modules └── soundcard │ ├── Dummy device │ └── etc │ │ └── modules │ └── HifiBerry DAC+ RTC │ └── etc │ └── modules ├── etc ├── X11 │ └── xorg.conf.d │ │ ├── 99-fbdev.conf │ │ └── 99-fbturbo.conf ├── apt │ └── pubkeys │ │ └── zynthian.pub ├── avahi │ └── services │ │ ├── zynthian-modui.service │ │ ├── zynthian-osc.service │ │ ├── zynthian-rtpmidi.service │ │ ├── zynthian-ssh.service │ │ └── zynthian-webconf.service ├── dbus-1 │ ├── system-local.conf │ └── system.d │ │ └── bluetooth.conf ├── default │ └── hostapd ├── environment.d │ └── 01-jack2.conf ├── filebrowser │ ├── branding │ │ └── img │ │ │ ├── icons │ │ │ └── favicon.png │ │ │ └── logo.svg │ ├── filebrowser.db │ ├── filebrowser.json │ └── root │ │ ├── config │ │ ├── media │ │ ├── my-data │ │ └── system-soundfonts ├── hostapd │ └── hostapd.conf ├── inittab ├── kernel │ └── postinst.d │ │ └── zynthian ├── ld.so.conf.d │ └── 01-local.conf ├── modprobe.d │ └── carbon49-alias.conf ├── modules ├── patchagerc ├── profile.zynthian ├── security │ └── limits.d │ │ └── audio.conf ├── systemd │ ├── a2jmidid.service │ ├── aubionotes.service │ ├── backlight.service │ ├── bluetooth.service │ ├── browsepy.service │ ├── cpu-performance.service │ ├── filebrowser.service │ ├── first_boot.service │ ├── headphones.service │ ├── jack-midi-clock.service │ ├── jack2.service │ ├── jacknetumpd.service │ ├── jackrtpmidid.service │ ├── mod-host.service │ ├── mod-sdk.service │ ├── mod-ttymidi.service │ ├── mod-ui.service │ ├── novnc0.service │ ├── novnc1.service │ ├── qmidinet.service │ ├── touchosc2midi.service │ ├── usb-gadget.service │ ├── vncserver0.service │ ├── vncserver1.service │ ├── zynthian-config-on-boot.service │ ├── zynthian-pwm-fan.service │ ├── zynthian-webconf.service │ ├── zynthian.service │ └── zynthian_debug.service ├── update-motd.d │ └── 00-zynthian ├── vim │ └── vimrc.local ├── xfce4.config │ ├── panel │ │ ├── launcher-2 │ │ │ └── 16162580183.desktop │ │ └── launcher-3 │ │ │ └── 16162603314.desktop │ └── xfconf │ │ └── xfce-perchannel-xml │ │ ├── xfce4-keyboard-shortcuts.xml │ │ ├── xfce4-panel.xml │ │ └── xfwm4.xml ├── xsessionrc └── zynaddsubfxXML.cfg ├── sbin ├── backlight_control.sh ├── clean_wifi_networks.sh ├── config-on-boot.sh ├── configure_rtc.sh ├── cpu-performance.sh ├── create_wifi_access_point.sh ├── del_last_zss.sh ├── epdf_detect.sh ├── filebrowser.sh ├── fix_alsamixer_settings.sh ├── fix_soundcard_mixer_ctrls.py ├── generate_fb_splash.sh ├── generate_lv2_presets_DrMr.py ├── generate_lv2_presets_TAL-U-NO-LX.py ├── generate_lv2_presets_VirtualJV.py ├── generate_lv2_presets_hydrogen2fabla.py ├── get_rbpi_audio_device.sh ├── is_python_module_installed.py ├── jack-smf-recorder.sh ├── jack_capture.sh ├── launch_if_not_running.sh ├── lv2_factory_preset_banks_monique.sh ├── lv2_factory_preset_banks_surge_xt.sh ├── mod-host.sh ├── mod-ui.sh ├── powersave_control.sh ├── regenerate_engines_db.sh ├── regenerate_keys.sh ├── regenerate_lv2_presets.sh ├── rpi_eeprom_reset.sh ├── set_envar.py ├── setup_rv3028.sh ├── setup_usb_gadget.sh ├── update_envars.py ├── zynthian-pwm-fan.py ├── zynthian.sh ├── zynthian_autoconfig.py ├── zynthian_hw_test.py ├── zynthian_remote.sh └── zynthian_stop.sh └── scripts ├── delayed_action_flags.sh ├── first_boot.sh ├── recipes ├── _zynth_lib.sh ├── fixup_amsynth.sh ├── generate_lv2_ttl.sh ├── install_ADLplug.sh ├── install_AnalogTapeModel.sh ├── install_CloudReverb_prebuilt.sh ├── install_Conners_IR_library.sh ├── install_JUCE.sh ├── install_MCP4728.sh ├── install_OB-Xf.sh ├── install_OB-Xf_prebuilt.sh ├── install_Perfomix.sh ├── install_Perfomix_prebuilt.sh ├── install_TAL-U-NO-LX-V2_prebuilt.sh ├── install_VL1.sh ├── install_VL53L0X.sh ├── install_XPolyMonk.sh ├── install_aeolus.sh ├── install_aeolus_kokki.sh ├── install_aether_reverb_prebuilt.sh ├── install_aidax.sh ├── install_alo.sh ├── install_alsaseq.sh ├── install_aminogfx.sh ├── install_ams-lv2.sh ├── install_amsynth.sh ├── install_argotlunar2_prebuilt.sh ├── install_arpeggiator.sh ├── install_aubio.sh ├── install_autoleveler_prebuilt.sh ├── install_avldrums.sh ├── install_bluez.sh ├── install_bolliedelay.sh ├── install_calf.sh ├── install_cmake.sh ├── install_darc_lv2.sh ├── install_dexed_lv2.sh ├── install_dexed_prebuilt.sh ├── install_distrho_ports.sh ├── install_dpf_plugins.sh ├── install_dragonfly.sh ├── install_drmr.sh ├── install_drmr_prebuilt.sh ├── install_dsp56300.sh ├── install_dsp56300_prebuilt.sh ├── install_dxsyx.sh ├── install_envolvigo_lv2.sh ├── install_eq10q.sh ├── install_fabla.sh ├── install_fabla_prebuilt.sh ├── install_fantasia.sh ├── install_fat1.sh ├── install_faust.sh ├── install_faust_lv2.sh ├── install_fil4_lv2.sh ├── install_filebrowser.sh ├── install_fluidplug.sh ├── install_fluidsynth.sh ├── install_foo-yc20.sh ├── install_gadget_tool.sh ├── install_guitarix.sh ├── install_gula.sh ├── install_gxdenoiser2.sh ├── install_gxdistortionplus.sh ├── install_gxplugins.sh ├── install_gxswitchlesswah.sh ├── install_helm.sh ├── install_hydrogen_drumkits.sh ├── install_hylia.sh ├── install_infamous.sh ├── install_ir-lv2-presets.sh ├── install_jack-smf-utils.sh ├── install_jack2.sh ├── install_jack_capture.sh ├── install_jack_delay.sh ├── install_jackclient-python.sh ├── install_jacknetumpd.sh ├── install_jackrtpmidid.sh ├── install_jc303.sh ├── install_jc303_prebuilt.sh ├── install_jpmidi.sh ├── install_jv880_prebuilt.sh ├── install_kernel_hb_dacadc.sh ├── install_libsndfile.sh ├── install_linuxsampler.sh ├── install_linuxsampler_stable.sh ├── install_lv2-gtk-ui-bridge.sh ├── install_lv2_jalv.sh ├── install_lv2_just_jalv.sh ├── install_lv2_lilv.sh ├── install_lv2_plugins_prebuilt.sh ├── install_lvtk.sh ├── install_mclk.sh ├── install_meters.sh ├── install_midi_display.sh ├── install_midifilter.lv2.sh ├── install_midish.sh ├── install_mimid.sh ├── install_mimid_prebuilt.sh ├── install_miniopl3.sh ├── install_mod-arpeggiator.sh ├── install_mod-browsepy.sh ├── install_mod-cabsim-IR-loader.sh ├── install_mod-caps.sh ├── install_mod-distortion.sh ├── install_mod-host.sh ├── install_mod-mda.sh ├── install_mod-mda_prebuilt.sh ├── install_mod-pitchshifter.sh ├── install_mod-sdk.sh ├── install_mod-tap.sh ├── install_mod-ttymidi.sh ├── install_mod-ui.sh ├── install_mod-utilities.sh ├── install_monique_monosynth.sh ├── install_monique_monosynth_prebuilt.sh ├── install_mutagen.sh ├── install_nam.sh ├── install_nam_models.sh ├── install_nam_prebuilt.sh ├── install_njconnect.sh ├── install_noVNC.sh ├── install_novachord_prebuilt.sh ├── install_ntk.sh ├── install_obxd_bank.sh ├── install_odin2.sh ├── install_odin2_prebuilt.sh ├── install_openav-artyfx.sh ├── install_os-251.sh ├── install_padthv1.sh ├── install_patchage.sh ├── install_pd_extra_abl_link.sh ├── install_phantomjs.sh ├── install_pianoteq_binary.sh ├── install_pianoteq_demo.sh ├── install_polyphone.sh ├── install_premake5.sh ├── install_preset2lv2.sh ├── install_punk_console.sh ├── install_pyliblo.sh ├── install_qjackctl.sh ├── install_qmidiarp.sh ├── install_qmidiarp_prebuilt.sh ├── install_qmidinet.sh ├── install_raffo.sh ├── install_ratatouille.sh ├── install_ratatouille_prebuilt.sh ├── install_reMID.sh ├── install_resonarium.sh ├── install_riban_lv2.sh ├── install_ripplerx.sh ├── install_ripplerx_prebuilt.sh ├── install_setBfree-controller.sh ├── install_setbfree.sh ├── install_sfizz.sh ├── install_shiro.sh ├── install_simsam.sh ├── install_sooperlooper-lv2-plugin.sh ├── install_sosynth.sh ├── install_squishbox_sf2.sh ├── install_step-seq.sh ├── install_stereo-mixer.sh ├── install_string-machine.sh ├── install_surge_xt.sh ├── install_surge_xt_prebuilt.sh ├── install_swh.sh ├── install_talentedhack.sh ├── install_terminado.sh ├── install_tkinterweb.sh ├── install_touchosc2midi.sh ├── install_tremelo.sh ├── install_triceratops.sh ├── install_vlc.sh ├── install_waveshare-dtoverlays.sh ├── install_wiringpi.sh ├── install_x42_plugins.sh ├── install_x42_testsignal.sh ├── install_x42_zeroconvo_prebuilt.sh ├── install_ykchorus.sh ├── install_zam.sh ├── install_zynMI_prebuilt.sh ├── install_zynaddsubfx.sh ├── install_zynfusion.sh ├── old │ ├── install_deeaxe7.sh │ └── install_fluidsynth_old.sh ├── pending │ ├── install_a2jmidid.sh │ ├── install_brcm.sh │ ├── install_drmr.sh │ ├── install_gxhyperion.sh │ ├── install_gxsaturator.sh │ ├── install_gxsuperfuzz.sh │ ├── install_gxsupertoneblender.sh │ ├── install_gxvoodofuzz.sh │ ├── install_libne10.sh │ ├── install_mod-setbfree.sh │ ├── install_mod-ttymidi.sh │ ├── install_modmeter.lv2.sh │ ├── install_qmidiarp.sh │ ├── install_rogue.sh │ ├── install_waylosynth2.sh │ └── install_zynaddsubfx.sh ├── postinstall_mod-lv2-data.sh └── waf ├── remove_swap.sh ├── set_first_boot.sh ├── setup_plugins_rbpi.sh ├── setup_system_debian_amd64_bookworm.sh ├── setup_system_raspioslite_64bit_bookworm.sh ├── setup_zynthian.sh ├── update_system_image.sh ├── update_zynthian.sh ├── update_zynthian_code.sh ├── update_zynthian_data.sh ├── update_zynthian_recipes.sh ├── update_zynthian_sys.sh ├── zynthian_envars.sh └── zynthian_envars_extended.sh /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/README.md -------------------------------------------------------------------------------- /boot/config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/boot/config.txt -------------------------------------------------------------------------------- /boot/pieeprom.sig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/boot/pieeprom.sig -------------------------------------------------------------------------------- /boot/pieeprom.upd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/boot/pieeprom.upd -------------------------------------------------------------------------------- /boot/recovery.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/boot/recovery.bin -------------------------------------------------------------------------------- /config/config_backup_items.txt: -------------------------------------------------------------------------------- 1 | ${ZYNTHIAN_CONFIG_DIR} 2 | /root/.config/Modartt 3 | -------------------------------------------------------------------------------- /config/data_backup_items.txt: -------------------------------------------------------------------------------- 1 | ${ZYNTHIAN_MY_DATA_DIR} 2 | /root/.local/share/Modartt 3 | -------------------------------------------------------------------------------- /config/default_midi_profile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/config/default_midi_profile.sh -------------------------------------------------------------------------------- /config/engine_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/config/engine_config.json -------------------------------------------------------------------------------- /config/keybinding/kpnum_jofe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/config/keybinding/kpnum_jofe.yaml -------------------------------------------------------------------------------- /config/keybinding/qwerty_riban.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/config/keybinding/qwerty_riban.yaml -------------------------------------------------------------------------------- /config/sidechain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/config/sidechain.json -------------------------------------------------------------------------------- /config/wiring-profiles/v4_cc_switches: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/config/wiring-profiles/v4_cc_switches -------------------------------------------------------------------------------- /config/wiring-profiles/v4_stage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/config/wiring-profiles/v4_stage -------------------------------------------------------------------------------- /config/wiring-profiles/v4_studio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/config/wiring-profiles/v4_studio -------------------------------------------------------------------------------- /config/wiring-profiles/v5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/config/wiring-profiles/v5 -------------------------------------------------------------------------------- /config/wiring-profiles/v5_zynface: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/config/wiring-profiles/v5_zynface -------------------------------------------------------------------------------- /config/wiring-profiles/z2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/config/wiring-profiles/z2 -------------------------------------------------------------------------------- /config/zynthian_envars_Custom.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/config/zynthian_envars_Custom.sh -------------------------------------------------------------------------------- /config/zynthian_envars_V1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/config/zynthian_envars_V1.sh -------------------------------------------------------------------------------- /config/zynthian_envars_V2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/config/zynthian_envars_V2.sh -------------------------------------------------------------------------------- /config/zynthian_envars_V4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/config/zynthian_envars_V4.sh -------------------------------------------------------------------------------- /config/zynthian_envars_V5.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/config/zynthian_envars_V5.sh -------------------------------------------------------------------------------- /config/zynthian_envars_V5_pi5.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/config/zynthian_envars_V5_pi5.sh -------------------------------------------------------------------------------- /config/zynthian_envars_Z2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/config/zynthian_envars_Z2.sh -------------------------------------------------------------------------------- /custom/display/MHS35 480x320/boot/overlays/mhs35-overlay.dtb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/custom/display/MHS35 480x320/boot/overlays/mhs35-overlay.dtb -------------------------------------------------------------------------------- /custom/display/MHS35 480x320/boot/overlays/mhs35.dtbo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/custom/display/MHS35 480x320/boot/overlays/mhs35.dtbo -------------------------------------------------------------------------------- /custom/display/PiScreen 3.5 (v2)/boot/overlays/piscreen2r-backlight.dtbo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/custom/display/PiScreen 3.5 (v2)/boot/overlays/piscreen2r-backlight.dtbo -------------------------------------------------------------------------------- /custom/display/PiScreen 3.5 (v2)/boot/overlays/piscreen2r-backlight.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/custom/display/PiScreen 3.5 (v2)/boot/overlays/piscreen2r-backlight.dts -------------------------------------------------------------------------------- /custom/display/PiScreen 3.5 (v2)/boot/overlays/piscreen2r-notouch.dtbo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/custom/display/PiScreen 3.5 (v2)/boot/overlays/piscreen2r-notouch.dtbo -------------------------------------------------------------------------------- /custom/display/PiScreen 3.5 (v2)/boot/overlays/piscreen2r-notouch.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/custom/display/PiScreen 3.5 (v2)/boot/overlays/piscreen2r-notouch.dts -------------------------------------------------------------------------------- /custom/display/PiScreen 3.5 (v2)/calibration.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/custom/display/PiScreen 3.5 (v2)/calibration.conf -------------------------------------------------------------------------------- /custom/display/PiTFT 2.8 Resistive/calibration.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/custom/display/PiTFT 2.8 Resistive/calibration.conf -------------------------------------------------------------------------------- /custom/display/PiTFT 2.8 Resistive/config/zynthian_custom_config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/custom/display/PiTFT 2.8 Resistive/config/zynthian_custom_config.sh -------------------------------------------------------------------------------- /custom/display/PiTFT 2.8 Resistive/etc/modules: -------------------------------------------------------------------------------- 1 | 2 | stmpe-ts 3 | -------------------------------------------------------------------------------- /custom/display/PiTFT 2.8 Resistive/etc/udev/rules.d/95-stmpe.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/custom/display/PiTFT 2.8 Resistive/etc/udev/rules.d/95-stmpe.rules -------------------------------------------------------------------------------- /custom/display/Sainsmart 1.8/boot/overlays/sainsmart18.dtbo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/custom/display/Sainsmart 1.8/boot/overlays/sainsmart18.dtbo -------------------------------------------------------------------------------- /custom/display/Sainsmart 1.8/boot/overlays/sainsmart18.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/custom/display/Sainsmart 1.8/boot/overlays/sainsmart18.dts -------------------------------------------------------------------------------- /custom/display/Z2 Display/boot/overlays/goodix_z2.dtbo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/custom/display/Z2 Display/boot/overlays/goodix_z2.dtbo -------------------------------------------------------------------------------- /custom/display/Z2 Display/boot/overlays/goodix_z2.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/custom/display/Z2 Display/boot/overlays/goodix_z2.dts -------------------------------------------------------------------------------- /custom/display/Z2 Display/calibration.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/custom/display/Z2 Display/calibration.conf -------------------------------------------------------------------------------- /custom/display/Z2 Display/firmware/goodix_911_cfg.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/custom/display/Z2 Display/firmware/goodix_911_cfg.bin -------------------------------------------------------------------------------- /custom/display/ZynScreen 3.5 (v1)/boot/overlays/piscreen2r-backlight.dtbo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/custom/display/ZynScreen 3.5 (v1)/boot/overlays/piscreen2r-backlight.dtbo -------------------------------------------------------------------------------- /custom/display/ZynScreen 3.5 (v1)/boot/overlays/piscreen2r-backlight.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/custom/display/ZynScreen 3.5 (v1)/boot/overlays/piscreen2r-backlight.dts -------------------------------------------------------------------------------- /custom/display/ZynScreen 3.5 (v1)/boot/overlays/piscreen2r-notouch.dtbo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/custom/display/ZynScreen 3.5 (v1)/boot/overlays/piscreen2r-notouch.dtbo -------------------------------------------------------------------------------- /custom/display/ZynScreen 3.5 (v1)/boot/overlays/piscreen2r-notouch.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/custom/display/ZynScreen 3.5 (v1)/boot/overlays/piscreen2r-notouch.dts -------------------------------------------------------------------------------- /custom/display/ZynScreen 3.5 (v1)/calibration.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/custom/display/ZynScreen 3.5 (v1)/calibration.conf -------------------------------------------------------------------------------- /custom/skel/config/zynthian_custom_config.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /custom/skel/etc/modules: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /custom/soundcard/Dummy device/etc/modules: -------------------------------------------------------------------------------- 1 | 2 | snd-dummy 3 | -------------------------------------------------------------------------------- /custom/soundcard/HifiBerry DAC+ RTC/etc/modules: -------------------------------------------------------------------------------- 1 | 2 | rtc-ds1307 3 | -------------------------------------------------------------------------------- /etc/X11/xorg.conf.d/99-fbdev.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/etc/X11/xorg.conf.d/99-fbdev.conf -------------------------------------------------------------------------------- /etc/X11/xorg.conf.d/99-fbturbo.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/etc/X11/xorg.conf.d/99-fbturbo.conf -------------------------------------------------------------------------------- /etc/apt/pubkeys/zynthian.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/etc/apt/pubkeys/zynthian.pub -------------------------------------------------------------------------------- /etc/avahi/services/zynthian-modui.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/etc/avahi/services/zynthian-modui.service -------------------------------------------------------------------------------- /etc/avahi/services/zynthian-osc.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/etc/avahi/services/zynthian-osc.service -------------------------------------------------------------------------------- /etc/avahi/services/zynthian-rtpmidi.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/etc/avahi/services/zynthian-rtpmidi.service -------------------------------------------------------------------------------- /etc/avahi/services/zynthian-ssh.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/etc/avahi/services/zynthian-ssh.service -------------------------------------------------------------------------------- /etc/avahi/services/zynthian-webconf.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/etc/avahi/services/zynthian-webconf.service -------------------------------------------------------------------------------- /etc/dbus-1/system-local.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/etc/dbus-1/system-local.conf -------------------------------------------------------------------------------- /etc/dbus-1/system.d/bluetooth.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/etc/dbus-1/system.d/bluetooth.conf -------------------------------------------------------------------------------- /etc/default/hostapd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/etc/default/hostapd -------------------------------------------------------------------------------- /etc/environment.d/01-jack2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/etc/environment.d/01-jack2.conf -------------------------------------------------------------------------------- /etc/filebrowser/branding/img/icons/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/etc/filebrowser/branding/img/icons/favicon.png -------------------------------------------------------------------------------- /etc/filebrowser/branding/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/etc/filebrowser/branding/img/logo.svg -------------------------------------------------------------------------------- /etc/filebrowser/filebrowser.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/etc/filebrowser/filebrowser.db -------------------------------------------------------------------------------- /etc/filebrowser/filebrowser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/etc/filebrowser/filebrowser.json -------------------------------------------------------------------------------- /etc/filebrowser/root/config: -------------------------------------------------------------------------------- 1 | /zynthian/config -------------------------------------------------------------------------------- /etc/filebrowser/root/media: -------------------------------------------------------------------------------- 1 | /media -------------------------------------------------------------------------------- /etc/filebrowser/root/my-data: -------------------------------------------------------------------------------- 1 | /zynthian/zynthian-my-data -------------------------------------------------------------------------------- /etc/filebrowser/root/system-soundfonts: -------------------------------------------------------------------------------- 1 | /zynthian/zynthian-data/soundfonts/ -------------------------------------------------------------------------------- /etc/hostapd/hostapd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/etc/hostapd/hostapd.conf -------------------------------------------------------------------------------- /etc/inittab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/etc/inittab -------------------------------------------------------------------------------- /etc/kernel/postinst.d/zynthian: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/etc/kernel/postinst.d/zynthian -------------------------------------------------------------------------------- /etc/ld.so.conf.d/01-local.conf: -------------------------------------------------------------------------------- 1 | /usr/local/lib 2 | -------------------------------------------------------------------------------- /etc/modprobe.d/carbon49-alias.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/etc/modprobe.d/carbon49-alias.conf -------------------------------------------------------------------------------- /etc/modules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/etc/modules -------------------------------------------------------------------------------- /etc/patchagerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/etc/patchagerc -------------------------------------------------------------------------------- /etc/profile.zynthian: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/etc/profile.zynthian -------------------------------------------------------------------------------- /etc/security/limits.d/audio.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/etc/security/limits.d/audio.conf -------------------------------------------------------------------------------- /etc/systemd/a2jmidid.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/etc/systemd/a2jmidid.service -------------------------------------------------------------------------------- /etc/systemd/aubionotes.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/etc/systemd/aubionotes.service -------------------------------------------------------------------------------- /etc/systemd/backlight.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/etc/systemd/backlight.service -------------------------------------------------------------------------------- /etc/systemd/bluetooth.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/etc/systemd/bluetooth.service -------------------------------------------------------------------------------- /etc/systemd/browsepy.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/etc/systemd/browsepy.service -------------------------------------------------------------------------------- /etc/systemd/cpu-performance.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/etc/systemd/cpu-performance.service -------------------------------------------------------------------------------- /etc/systemd/filebrowser.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/etc/systemd/filebrowser.service -------------------------------------------------------------------------------- /etc/systemd/first_boot.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/etc/systemd/first_boot.service -------------------------------------------------------------------------------- /etc/systemd/headphones.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/etc/systemd/headphones.service -------------------------------------------------------------------------------- /etc/systemd/jack-midi-clock.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/etc/systemd/jack-midi-clock.service -------------------------------------------------------------------------------- /etc/systemd/jack2.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/etc/systemd/jack2.service -------------------------------------------------------------------------------- /etc/systemd/jacknetumpd.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/etc/systemd/jacknetumpd.service -------------------------------------------------------------------------------- /etc/systemd/jackrtpmidid.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/etc/systemd/jackrtpmidid.service -------------------------------------------------------------------------------- /etc/systemd/mod-host.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/etc/systemd/mod-host.service -------------------------------------------------------------------------------- /etc/systemd/mod-sdk.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/etc/systemd/mod-sdk.service -------------------------------------------------------------------------------- /etc/systemd/mod-ttymidi.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/etc/systemd/mod-ttymidi.service -------------------------------------------------------------------------------- /etc/systemd/mod-ui.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/etc/systemd/mod-ui.service -------------------------------------------------------------------------------- /etc/systemd/novnc0.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/etc/systemd/novnc0.service -------------------------------------------------------------------------------- /etc/systemd/novnc1.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/etc/systemd/novnc1.service -------------------------------------------------------------------------------- /etc/systemd/qmidinet.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/etc/systemd/qmidinet.service -------------------------------------------------------------------------------- /etc/systemd/touchosc2midi.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/etc/systemd/touchosc2midi.service -------------------------------------------------------------------------------- /etc/systemd/usb-gadget.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/etc/systemd/usb-gadget.service -------------------------------------------------------------------------------- /etc/systemd/vncserver0.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/etc/systemd/vncserver0.service -------------------------------------------------------------------------------- /etc/systemd/vncserver1.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/etc/systemd/vncserver1.service -------------------------------------------------------------------------------- /etc/systemd/zynthian-config-on-boot.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/etc/systemd/zynthian-config-on-boot.service -------------------------------------------------------------------------------- /etc/systemd/zynthian-pwm-fan.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/etc/systemd/zynthian-pwm-fan.service -------------------------------------------------------------------------------- /etc/systemd/zynthian-webconf.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/etc/systemd/zynthian-webconf.service -------------------------------------------------------------------------------- /etc/systemd/zynthian.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/etc/systemd/zynthian.service -------------------------------------------------------------------------------- /etc/systemd/zynthian_debug.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/etc/systemd/zynthian_debug.service -------------------------------------------------------------------------------- /etc/update-motd.d/00-zynthian: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/etc/update-motd.d/00-zynthian -------------------------------------------------------------------------------- /etc/vim/vimrc.local: -------------------------------------------------------------------------------- 1 | 2 | set softtabstop=0 noexpandtab 3 | -------------------------------------------------------------------------------- /etc/xfce4.config/panel/launcher-2/16162580183.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/etc/xfce4.config/panel/launcher-2/16162580183.desktop -------------------------------------------------------------------------------- /etc/xfce4.config/panel/launcher-3/16162603314.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/etc/xfce4.config/panel/launcher-3/16162603314.desktop -------------------------------------------------------------------------------- /etc/xfce4.config/xfconf/xfce-perchannel-xml/xfce4-keyboard-shortcuts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/etc/xfce4.config/xfconf/xfce-perchannel-xml/xfce4-keyboard-shortcuts.xml -------------------------------------------------------------------------------- /etc/xfce4.config/xfconf/xfce-perchannel-xml/xfce4-panel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/etc/xfce4.config/xfconf/xfce-perchannel-xml/xfce4-panel.xml -------------------------------------------------------------------------------- /etc/xfce4.config/xfconf/xfce-perchannel-xml/xfwm4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/etc/xfce4.config/xfconf/xfce-perchannel-xml/xfwm4.xml -------------------------------------------------------------------------------- /etc/xsessionrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/etc/xsessionrc -------------------------------------------------------------------------------- /etc/zynaddsubfxXML.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/etc/zynaddsubfxXML.cfg -------------------------------------------------------------------------------- /sbin/backlight_control.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/sbin/backlight_control.sh -------------------------------------------------------------------------------- /sbin/clean_wifi_networks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/sbin/clean_wifi_networks.sh -------------------------------------------------------------------------------- /sbin/config-on-boot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/sbin/config-on-boot.sh -------------------------------------------------------------------------------- /sbin/configure_rtc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/sbin/configure_rtc.sh -------------------------------------------------------------------------------- /sbin/cpu-performance.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/sbin/cpu-performance.sh -------------------------------------------------------------------------------- /sbin/create_wifi_access_point.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/sbin/create_wifi_access_point.sh -------------------------------------------------------------------------------- /sbin/del_last_zss.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | rm -f $ZYNTHIAN_MY_DATA_DIR/snapshots/last_state.zss 4 | -------------------------------------------------------------------------------- /sbin/epdf_detect.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/sbin/epdf_detect.sh -------------------------------------------------------------------------------- /sbin/filebrowser.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/sbin/filebrowser.sh -------------------------------------------------------------------------------- /sbin/fix_alsamixer_settings.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/sbin/fix_alsamixer_settings.sh -------------------------------------------------------------------------------- /sbin/fix_soundcard_mixer_ctrls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/sbin/fix_soundcard_mixer_ctrls.py -------------------------------------------------------------------------------- /sbin/generate_fb_splash.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/sbin/generate_fb_splash.sh -------------------------------------------------------------------------------- /sbin/generate_lv2_presets_DrMr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/sbin/generate_lv2_presets_DrMr.py -------------------------------------------------------------------------------- /sbin/generate_lv2_presets_TAL-U-NO-LX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/sbin/generate_lv2_presets_TAL-U-NO-LX.py -------------------------------------------------------------------------------- /sbin/generate_lv2_presets_VirtualJV.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/sbin/generate_lv2_presets_VirtualJV.py -------------------------------------------------------------------------------- /sbin/generate_lv2_presets_hydrogen2fabla.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/sbin/generate_lv2_presets_hydrogen2fabla.py -------------------------------------------------------------------------------- /sbin/get_rbpi_audio_device.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/sbin/get_rbpi_audio_device.sh -------------------------------------------------------------------------------- /sbin/is_python_module_installed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/sbin/is_python_module_installed.py -------------------------------------------------------------------------------- /sbin/jack-smf-recorder.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/sbin/jack-smf-recorder.sh -------------------------------------------------------------------------------- /sbin/jack_capture.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/sbin/jack_capture.sh -------------------------------------------------------------------------------- /sbin/launch_if_not_running.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/sbin/launch_if_not_running.sh -------------------------------------------------------------------------------- /sbin/lv2_factory_preset_banks_monique.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/sbin/lv2_factory_preset_banks_monique.sh -------------------------------------------------------------------------------- /sbin/lv2_factory_preset_banks_surge_xt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/sbin/lv2_factory_preset_banks_surge_xt.sh -------------------------------------------------------------------------------- /sbin/mod-host.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/sbin/mod-host.sh -------------------------------------------------------------------------------- /sbin/mod-ui.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/sbin/mod-ui.sh -------------------------------------------------------------------------------- /sbin/powersave_control.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/sbin/powersave_control.sh -------------------------------------------------------------------------------- /sbin/regenerate_engines_db.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/sbin/regenerate_engines_db.sh -------------------------------------------------------------------------------- /sbin/regenerate_keys.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/sbin/regenerate_keys.sh -------------------------------------------------------------------------------- /sbin/regenerate_lv2_presets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/sbin/regenerate_lv2_presets.sh -------------------------------------------------------------------------------- /sbin/rpi_eeprom_reset.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/sbin/rpi_eeprom_reset.sh -------------------------------------------------------------------------------- /sbin/set_envar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/sbin/set_envar.py -------------------------------------------------------------------------------- /sbin/setup_rv3028.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/sbin/setup_rv3028.sh -------------------------------------------------------------------------------- /sbin/setup_usb_gadget.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/sbin/setup_usb_gadget.sh -------------------------------------------------------------------------------- /sbin/update_envars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/sbin/update_envars.py -------------------------------------------------------------------------------- /sbin/zynthian-pwm-fan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/sbin/zynthian-pwm-fan.py -------------------------------------------------------------------------------- /sbin/zynthian.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/sbin/zynthian.sh -------------------------------------------------------------------------------- /sbin/zynthian_autoconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/sbin/zynthian_autoconfig.py -------------------------------------------------------------------------------- /sbin/zynthian_hw_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/sbin/zynthian_hw_test.py -------------------------------------------------------------------------------- /sbin/zynthian_remote.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/sbin/zynthian_remote.sh -------------------------------------------------------------------------------- /sbin/zynthian_stop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/sbin/zynthian_stop.sh -------------------------------------------------------------------------------- /scripts/delayed_action_flags.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/delayed_action_flags.sh -------------------------------------------------------------------------------- /scripts/first_boot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/first_boot.sh -------------------------------------------------------------------------------- /scripts/recipes/_zynth_lib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/_zynth_lib.sh -------------------------------------------------------------------------------- /scripts/recipes/fixup_amsynth.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/fixup_amsynth.sh -------------------------------------------------------------------------------- /scripts/recipes/generate_lv2_ttl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/generate_lv2_ttl.sh -------------------------------------------------------------------------------- /scripts/recipes/install_ADLplug.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_ADLplug.sh -------------------------------------------------------------------------------- /scripts/recipes/install_AnalogTapeModel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_AnalogTapeModel.sh -------------------------------------------------------------------------------- /scripts/recipes/install_CloudReverb_prebuilt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_CloudReverb_prebuilt.sh -------------------------------------------------------------------------------- /scripts/recipes/install_Conners_IR_library.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_Conners_IR_library.sh -------------------------------------------------------------------------------- /scripts/recipes/install_JUCE.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_JUCE.sh -------------------------------------------------------------------------------- /scripts/recipes/install_MCP4728.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_MCP4728.sh -------------------------------------------------------------------------------- /scripts/recipes/install_OB-Xf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_OB-Xf.sh -------------------------------------------------------------------------------- /scripts/recipes/install_OB-Xf_prebuilt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_OB-Xf_prebuilt.sh -------------------------------------------------------------------------------- /scripts/recipes/install_Perfomix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_Perfomix.sh -------------------------------------------------------------------------------- /scripts/recipes/install_Perfomix_prebuilt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_Perfomix_prebuilt.sh -------------------------------------------------------------------------------- /scripts/recipes/install_TAL-U-NO-LX-V2_prebuilt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_TAL-U-NO-LX-V2_prebuilt.sh -------------------------------------------------------------------------------- /scripts/recipes/install_VL1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_VL1.sh -------------------------------------------------------------------------------- /scripts/recipes/install_VL53L0X.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_VL53L0X.sh -------------------------------------------------------------------------------- /scripts/recipes/install_XPolyMonk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_XPolyMonk.sh -------------------------------------------------------------------------------- /scripts/recipes/install_aeolus.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_aeolus.sh -------------------------------------------------------------------------------- /scripts/recipes/install_aeolus_kokki.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_aeolus_kokki.sh -------------------------------------------------------------------------------- /scripts/recipes/install_aether_reverb_prebuilt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_aether_reverb_prebuilt.sh -------------------------------------------------------------------------------- /scripts/recipes/install_aidax.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_aidax.sh -------------------------------------------------------------------------------- /scripts/recipes/install_alo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_alo.sh -------------------------------------------------------------------------------- /scripts/recipes/install_alsaseq.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_alsaseq.sh -------------------------------------------------------------------------------- /scripts/recipes/install_aminogfx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_aminogfx.sh -------------------------------------------------------------------------------- /scripts/recipes/install_ams-lv2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_ams-lv2.sh -------------------------------------------------------------------------------- /scripts/recipes/install_amsynth.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_amsynth.sh -------------------------------------------------------------------------------- /scripts/recipes/install_argotlunar2_prebuilt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_argotlunar2_prebuilt.sh -------------------------------------------------------------------------------- /scripts/recipes/install_arpeggiator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_arpeggiator.sh -------------------------------------------------------------------------------- /scripts/recipes/install_aubio.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_aubio.sh -------------------------------------------------------------------------------- /scripts/recipes/install_autoleveler_prebuilt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_autoleveler_prebuilt.sh -------------------------------------------------------------------------------- /scripts/recipes/install_avldrums.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_avldrums.sh -------------------------------------------------------------------------------- /scripts/recipes/install_bluez.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_bluez.sh -------------------------------------------------------------------------------- /scripts/recipes/install_bolliedelay.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_bolliedelay.sh -------------------------------------------------------------------------------- /scripts/recipes/install_calf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_calf.sh -------------------------------------------------------------------------------- /scripts/recipes/install_cmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_cmake.sh -------------------------------------------------------------------------------- /scripts/recipes/install_darc_lv2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_darc_lv2.sh -------------------------------------------------------------------------------- /scripts/recipes/install_dexed_lv2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_dexed_lv2.sh -------------------------------------------------------------------------------- /scripts/recipes/install_dexed_prebuilt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_dexed_prebuilt.sh -------------------------------------------------------------------------------- /scripts/recipes/install_distrho_ports.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_distrho_ports.sh -------------------------------------------------------------------------------- /scripts/recipes/install_dpf_plugins.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_dpf_plugins.sh -------------------------------------------------------------------------------- /scripts/recipes/install_dragonfly.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_dragonfly.sh -------------------------------------------------------------------------------- /scripts/recipes/install_drmr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_drmr.sh -------------------------------------------------------------------------------- /scripts/recipes/install_drmr_prebuilt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_drmr_prebuilt.sh -------------------------------------------------------------------------------- /scripts/recipes/install_dsp56300.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_dsp56300.sh -------------------------------------------------------------------------------- /scripts/recipes/install_dsp56300_prebuilt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_dsp56300_prebuilt.sh -------------------------------------------------------------------------------- /scripts/recipes/install_dxsyx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_dxsyx.sh -------------------------------------------------------------------------------- /scripts/recipes/install_envolvigo_lv2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_envolvigo_lv2.sh -------------------------------------------------------------------------------- /scripts/recipes/install_eq10q.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_eq10q.sh -------------------------------------------------------------------------------- /scripts/recipes/install_fabla.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_fabla.sh -------------------------------------------------------------------------------- /scripts/recipes/install_fabla_prebuilt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_fabla_prebuilt.sh -------------------------------------------------------------------------------- /scripts/recipes/install_fantasia.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_fantasia.sh -------------------------------------------------------------------------------- /scripts/recipes/install_fat1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_fat1.sh -------------------------------------------------------------------------------- /scripts/recipes/install_faust.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_faust.sh -------------------------------------------------------------------------------- /scripts/recipes/install_faust_lv2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_faust_lv2.sh -------------------------------------------------------------------------------- /scripts/recipes/install_fil4_lv2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_fil4_lv2.sh -------------------------------------------------------------------------------- /scripts/recipes/install_filebrowser.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_filebrowser.sh -------------------------------------------------------------------------------- /scripts/recipes/install_fluidplug.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_fluidplug.sh -------------------------------------------------------------------------------- /scripts/recipes/install_fluidsynth.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_fluidsynth.sh -------------------------------------------------------------------------------- /scripts/recipes/install_foo-yc20.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_foo-yc20.sh -------------------------------------------------------------------------------- /scripts/recipes/install_gadget_tool.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_gadget_tool.sh -------------------------------------------------------------------------------- /scripts/recipes/install_guitarix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_guitarix.sh -------------------------------------------------------------------------------- /scripts/recipes/install_gula.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_gula.sh -------------------------------------------------------------------------------- /scripts/recipes/install_gxdenoiser2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_gxdenoiser2.sh -------------------------------------------------------------------------------- /scripts/recipes/install_gxdistortionplus.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_gxdistortionplus.sh -------------------------------------------------------------------------------- /scripts/recipes/install_gxplugins.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_gxplugins.sh -------------------------------------------------------------------------------- /scripts/recipes/install_gxswitchlesswah.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_gxswitchlesswah.sh -------------------------------------------------------------------------------- /scripts/recipes/install_helm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_helm.sh -------------------------------------------------------------------------------- /scripts/recipes/install_hydrogen_drumkits.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_hydrogen_drumkits.sh -------------------------------------------------------------------------------- /scripts/recipes/install_hylia.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_hylia.sh -------------------------------------------------------------------------------- /scripts/recipes/install_infamous.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_infamous.sh -------------------------------------------------------------------------------- /scripts/recipes/install_ir-lv2-presets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_ir-lv2-presets.sh -------------------------------------------------------------------------------- /scripts/recipes/install_jack-smf-utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_jack-smf-utils.sh -------------------------------------------------------------------------------- /scripts/recipes/install_jack2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_jack2.sh -------------------------------------------------------------------------------- /scripts/recipes/install_jack_capture.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_jack_capture.sh -------------------------------------------------------------------------------- /scripts/recipes/install_jack_delay.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_jack_delay.sh -------------------------------------------------------------------------------- /scripts/recipes/install_jackclient-python.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_jackclient-python.sh -------------------------------------------------------------------------------- /scripts/recipes/install_jacknetumpd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_jacknetumpd.sh -------------------------------------------------------------------------------- /scripts/recipes/install_jackrtpmidid.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_jackrtpmidid.sh -------------------------------------------------------------------------------- /scripts/recipes/install_jc303.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_jc303.sh -------------------------------------------------------------------------------- /scripts/recipes/install_jc303_prebuilt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_jc303_prebuilt.sh -------------------------------------------------------------------------------- /scripts/recipes/install_jpmidi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_jpmidi.sh -------------------------------------------------------------------------------- /scripts/recipes/install_jv880_prebuilt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_jv880_prebuilt.sh -------------------------------------------------------------------------------- /scripts/recipes/install_kernel_hb_dacadc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_kernel_hb_dacadc.sh -------------------------------------------------------------------------------- /scripts/recipes/install_libsndfile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_libsndfile.sh -------------------------------------------------------------------------------- /scripts/recipes/install_linuxsampler.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_linuxsampler.sh -------------------------------------------------------------------------------- /scripts/recipes/install_linuxsampler_stable.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_linuxsampler_stable.sh -------------------------------------------------------------------------------- /scripts/recipes/install_lv2-gtk-ui-bridge.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_lv2-gtk-ui-bridge.sh -------------------------------------------------------------------------------- /scripts/recipes/install_lv2_jalv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_lv2_jalv.sh -------------------------------------------------------------------------------- /scripts/recipes/install_lv2_just_jalv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_lv2_just_jalv.sh -------------------------------------------------------------------------------- /scripts/recipes/install_lv2_lilv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_lv2_lilv.sh -------------------------------------------------------------------------------- /scripts/recipes/install_lv2_plugins_prebuilt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_lv2_plugins_prebuilt.sh -------------------------------------------------------------------------------- /scripts/recipes/install_lvtk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_lvtk.sh -------------------------------------------------------------------------------- /scripts/recipes/install_mclk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_mclk.sh -------------------------------------------------------------------------------- /scripts/recipes/install_meters.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_meters.sh -------------------------------------------------------------------------------- /scripts/recipes/install_midi_display.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_midi_display.sh -------------------------------------------------------------------------------- /scripts/recipes/install_midifilter.lv2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_midifilter.lv2.sh -------------------------------------------------------------------------------- /scripts/recipes/install_midish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_midish.sh -------------------------------------------------------------------------------- /scripts/recipes/install_mimid.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_mimid.sh -------------------------------------------------------------------------------- /scripts/recipes/install_mimid_prebuilt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_mimid_prebuilt.sh -------------------------------------------------------------------------------- /scripts/recipes/install_miniopl3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_miniopl3.sh -------------------------------------------------------------------------------- /scripts/recipes/install_mod-arpeggiator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_mod-arpeggiator.sh -------------------------------------------------------------------------------- /scripts/recipes/install_mod-browsepy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_mod-browsepy.sh -------------------------------------------------------------------------------- /scripts/recipes/install_mod-cabsim-IR-loader.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_mod-cabsim-IR-loader.sh -------------------------------------------------------------------------------- /scripts/recipes/install_mod-caps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_mod-caps.sh -------------------------------------------------------------------------------- /scripts/recipes/install_mod-distortion.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_mod-distortion.sh -------------------------------------------------------------------------------- /scripts/recipes/install_mod-host.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_mod-host.sh -------------------------------------------------------------------------------- /scripts/recipes/install_mod-mda.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_mod-mda.sh -------------------------------------------------------------------------------- /scripts/recipes/install_mod-mda_prebuilt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_mod-mda_prebuilt.sh -------------------------------------------------------------------------------- /scripts/recipes/install_mod-pitchshifter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_mod-pitchshifter.sh -------------------------------------------------------------------------------- /scripts/recipes/install_mod-sdk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_mod-sdk.sh -------------------------------------------------------------------------------- /scripts/recipes/install_mod-tap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_mod-tap.sh -------------------------------------------------------------------------------- /scripts/recipes/install_mod-ttymidi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_mod-ttymidi.sh -------------------------------------------------------------------------------- /scripts/recipes/install_mod-ui.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_mod-ui.sh -------------------------------------------------------------------------------- /scripts/recipes/install_mod-utilities.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_mod-utilities.sh -------------------------------------------------------------------------------- /scripts/recipes/install_monique_monosynth.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_monique_monosynth.sh -------------------------------------------------------------------------------- /scripts/recipes/install_monique_monosynth_prebuilt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_monique_monosynth_prebuilt.sh -------------------------------------------------------------------------------- /scripts/recipes/install_mutagen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_mutagen.sh -------------------------------------------------------------------------------- /scripts/recipes/install_nam.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_nam.sh -------------------------------------------------------------------------------- /scripts/recipes/install_nam_models.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_nam_models.sh -------------------------------------------------------------------------------- /scripts/recipes/install_nam_prebuilt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_nam_prebuilt.sh -------------------------------------------------------------------------------- /scripts/recipes/install_njconnect.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_njconnect.sh -------------------------------------------------------------------------------- /scripts/recipes/install_noVNC.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_noVNC.sh -------------------------------------------------------------------------------- /scripts/recipes/install_novachord_prebuilt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_novachord_prebuilt.sh -------------------------------------------------------------------------------- /scripts/recipes/install_ntk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_ntk.sh -------------------------------------------------------------------------------- /scripts/recipes/install_obxd_bank.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_obxd_bank.sh -------------------------------------------------------------------------------- /scripts/recipes/install_odin2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_odin2.sh -------------------------------------------------------------------------------- /scripts/recipes/install_odin2_prebuilt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_odin2_prebuilt.sh -------------------------------------------------------------------------------- /scripts/recipes/install_openav-artyfx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_openav-artyfx.sh -------------------------------------------------------------------------------- /scripts/recipes/install_os-251.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_os-251.sh -------------------------------------------------------------------------------- /scripts/recipes/install_padthv1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_padthv1.sh -------------------------------------------------------------------------------- /scripts/recipes/install_patchage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_patchage.sh -------------------------------------------------------------------------------- /scripts/recipes/install_pd_extra_abl_link.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_pd_extra_abl_link.sh -------------------------------------------------------------------------------- /scripts/recipes/install_phantomjs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_phantomjs.sh -------------------------------------------------------------------------------- /scripts/recipes/install_pianoteq_binary.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_pianoteq_binary.sh -------------------------------------------------------------------------------- /scripts/recipes/install_pianoteq_demo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_pianoteq_demo.sh -------------------------------------------------------------------------------- /scripts/recipes/install_polyphone.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_polyphone.sh -------------------------------------------------------------------------------- /scripts/recipes/install_premake5.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_premake5.sh -------------------------------------------------------------------------------- /scripts/recipes/install_preset2lv2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_preset2lv2.sh -------------------------------------------------------------------------------- /scripts/recipes/install_punk_console.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_punk_console.sh -------------------------------------------------------------------------------- /scripts/recipes/install_pyliblo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_pyliblo.sh -------------------------------------------------------------------------------- /scripts/recipes/install_qjackctl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_qjackctl.sh -------------------------------------------------------------------------------- /scripts/recipes/install_qmidiarp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_qmidiarp.sh -------------------------------------------------------------------------------- /scripts/recipes/install_qmidiarp_prebuilt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_qmidiarp_prebuilt.sh -------------------------------------------------------------------------------- /scripts/recipes/install_qmidinet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_qmidinet.sh -------------------------------------------------------------------------------- /scripts/recipes/install_raffo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_raffo.sh -------------------------------------------------------------------------------- /scripts/recipes/install_ratatouille.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_ratatouille.sh -------------------------------------------------------------------------------- /scripts/recipes/install_ratatouille_prebuilt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_ratatouille_prebuilt.sh -------------------------------------------------------------------------------- /scripts/recipes/install_reMID.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_reMID.sh -------------------------------------------------------------------------------- /scripts/recipes/install_resonarium.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_resonarium.sh -------------------------------------------------------------------------------- /scripts/recipes/install_riban_lv2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_riban_lv2.sh -------------------------------------------------------------------------------- /scripts/recipes/install_ripplerx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_ripplerx.sh -------------------------------------------------------------------------------- /scripts/recipes/install_ripplerx_prebuilt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_ripplerx_prebuilt.sh -------------------------------------------------------------------------------- /scripts/recipes/install_setBfree-controller.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_setBfree-controller.sh -------------------------------------------------------------------------------- /scripts/recipes/install_setbfree.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_setbfree.sh -------------------------------------------------------------------------------- /scripts/recipes/install_sfizz.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_sfizz.sh -------------------------------------------------------------------------------- /scripts/recipes/install_shiro.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_shiro.sh -------------------------------------------------------------------------------- /scripts/recipes/install_simsam.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_simsam.sh -------------------------------------------------------------------------------- /scripts/recipes/install_sooperlooper-lv2-plugin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_sooperlooper-lv2-plugin.sh -------------------------------------------------------------------------------- /scripts/recipes/install_sosynth.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_sosynth.sh -------------------------------------------------------------------------------- /scripts/recipes/install_squishbox_sf2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_squishbox_sf2.sh -------------------------------------------------------------------------------- /scripts/recipes/install_step-seq.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_step-seq.sh -------------------------------------------------------------------------------- /scripts/recipes/install_stereo-mixer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_stereo-mixer.sh -------------------------------------------------------------------------------- /scripts/recipes/install_string-machine.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_string-machine.sh -------------------------------------------------------------------------------- /scripts/recipes/install_surge_xt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_surge_xt.sh -------------------------------------------------------------------------------- /scripts/recipes/install_surge_xt_prebuilt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_surge_xt_prebuilt.sh -------------------------------------------------------------------------------- /scripts/recipes/install_swh.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_swh.sh -------------------------------------------------------------------------------- /scripts/recipes/install_talentedhack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_talentedhack.sh -------------------------------------------------------------------------------- /scripts/recipes/install_terminado.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_terminado.sh -------------------------------------------------------------------------------- /scripts/recipes/install_tkinterweb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_tkinterweb.sh -------------------------------------------------------------------------------- /scripts/recipes/install_touchosc2midi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_touchosc2midi.sh -------------------------------------------------------------------------------- /scripts/recipes/install_tremelo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_tremelo.sh -------------------------------------------------------------------------------- /scripts/recipes/install_triceratops.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_triceratops.sh -------------------------------------------------------------------------------- /scripts/recipes/install_vlc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_vlc.sh -------------------------------------------------------------------------------- /scripts/recipes/install_waveshare-dtoverlays.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_waveshare-dtoverlays.sh -------------------------------------------------------------------------------- /scripts/recipes/install_wiringpi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_wiringpi.sh -------------------------------------------------------------------------------- /scripts/recipes/install_x42_plugins.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_x42_plugins.sh -------------------------------------------------------------------------------- /scripts/recipes/install_x42_testsignal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_x42_testsignal.sh -------------------------------------------------------------------------------- /scripts/recipes/install_x42_zeroconvo_prebuilt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_x42_zeroconvo_prebuilt.sh -------------------------------------------------------------------------------- /scripts/recipes/install_ykchorus.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_ykchorus.sh -------------------------------------------------------------------------------- /scripts/recipes/install_zam.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_zam.sh -------------------------------------------------------------------------------- /scripts/recipes/install_zynMI_prebuilt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_zynMI_prebuilt.sh -------------------------------------------------------------------------------- /scripts/recipes/install_zynaddsubfx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_zynaddsubfx.sh -------------------------------------------------------------------------------- /scripts/recipes/install_zynfusion.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/install_zynfusion.sh -------------------------------------------------------------------------------- /scripts/recipes/old/install_deeaxe7.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/old/install_deeaxe7.sh -------------------------------------------------------------------------------- /scripts/recipes/old/install_fluidsynth_old.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/old/install_fluidsynth_old.sh -------------------------------------------------------------------------------- /scripts/recipes/pending/install_a2jmidid.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/pending/install_a2jmidid.sh -------------------------------------------------------------------------------- /scripts/recipes/pending/install_brcm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/pending/install_brcm.sh -------------------------------------------------------------------------------- /scripts/recipes/pending/install_drmr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/pending/install_drmr.sh -------------------------------------------------------------------------------- /scripts/recipes/pending/install_gxhyperion.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/pending/install_gxhyperion.sh -------------------------------------------------------------------------------- /scripts/recipes/pending/install_gxsaturator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/pending/install_gxsaturator.sh -------------------------------------------------------------------------------- /scripts/recipes/pending/install_gxsuperfuzz.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/pending/install_gxsuperfuzz.sh -------------------------------------------------------------------------------- /scripts/recipes/pending/install_gxsupertoneblender.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/pending/install_gxsupertoneblender.sh -------------------------------------------------------------------------------- /scripts/recipes/pending/install_gxvoodofuzz.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/pending/install_gxvoodofuzz.sh -------------------------------------------------------------------------------- /scripts/recipes/pending/install_libne10.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/pending/install_libne10.sh -------------------------------------------------------------------------------- /scripts/recipes/pending/install_mod-setbfree.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/pending/install_mod-setbfree.sh -------------------------------------------------------------------------------- /scripts/recipes/pending/install_mod-ttymidi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/pending/install_mod-ttymidi.sh -------------------------------------------------------------------------------- /scripts/recipes/pending/install_modmeter.lv2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/pending/install_modmeter.lv2.sh -------------------------------------------------------------------------------- /scripts/recipes/pending/install_qmidiarp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/pending/install_qmidiarp.sh -------------------------------------------------------------------------------- /scripts/recipes/pending/install_rogue.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/pending/install_rogue.sh -------------------------------------------------------------------------------- /scripts/recipes/pending/install_waylosynth2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/pending/install_waylosynth2.sh -------------------------------------------------------------------------------- /scripts/recipes/pending/install_zynaddsubfx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/pending/install_zynaddsubfx.sh -------------------------------------------------------------------------------- /scripts/recipes/postinstall_mod-lv2-data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/postinstall_mod-lv2-data.sh -------------------------------------------------------------------------------- /scripts/recipes/waf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/recipes/waf -------------------------------------------------------------------------------- /scripts/remove_swap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/remove_swap.sh -------------------------------------------------------------------------------- /scripts/set_first_boot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/set_first_boot.sh -------------------------------------------------------------------------------- /scripts/setup_plugins_rbpi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/setup_plugins_rbpi.sh -------------------------------------------------------------------------------- /scripts/setup_system_debian_amd64_bookworm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/setup_system_debian_amd64_bookworm.sh -------------------------------------------------------------------------------- /scripts/setup_system_raspioslite_64bit_bookworm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/setup_system_raspioslite_64bit_bookworm.sh -------------------------------------------------------------------------------- /scripts/setup_zynthian.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/setup_zynthian.sh -------------------------------------------------------------------------------- /scripts/update_system_image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/update_system_image.sh -------------------------------------------------------------------------------- /scripts/update_zynthian.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/update_zynthian.sh -------------------------------------------------------------------------------- /scripts/update_zynthian_code.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/update_zynthian_code.sh -------------------------------------------------------------------------------- /scripts/update_zynthian_data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/update_zynthian_data.sh -------------------------------------------------------------------------------- /scripts/update_zynthian_recipes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/update_zynthian_recipes.sh -------------------------------------------------------------------------------- /scripts/update_zynthian_sys.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/update_zynthian_sys.sh -------------------------------------------------------------------------------- /scripts/zynthian_envars.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/zynthian_envars.sh -------------------------------------------------------------------------------- /scripts/zynthian_envars_extended.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zynthian/zynthian-sys/HEAD/scripts/zynthian_envars_extended.sh --------------------------------------------------------------------------------