├── .gitignore ├── .todo.txt ├── LICENSE ├── README.md ├── changelog.txt ├── refresh_parmanode.sh ├── run_parmanode.sh ├── source_parmanode.sh ├── src ├── Deprecated │ └── not_used │ │ ├── nginx_electrs.sh │ │ └── postgres_script.sh ├── MENUS │ ├── back2main.sh │ ├── jump.sh │ ├── menu_add.sh │ ├── menu_add_extras.sh │ ├── menu_add_node.sh │ ├── menu_add_other.sh │ ├── menu_add_source.sh │ ├── menu_add_wallets.sh │ ├── menu_drives.sh │ ├── menu_log_config.sh │ ├── menu_main.sh │ ├── menu_migrate.sh │ ├── menu_overview.sh │ ├── menu_parmanbooks.sh │ ├── menu_premium.sh │ ├── menu_remove.sh │ ├── menu_settings.sh │ ├── menu_use.sh │ └── parmans_help.sh ├── Mac │ ├── brew_check.sh │ ├── cldt_check.sh │ ├── get_Mac_version.sh │ ├── gsed_symlink.sh │ ├── install_gpg4mac.sh │ ├── install_homebrew.sh │ ├── qemu │ │ └── install_qemu.sh │ ├── turn_off_spotlight.sh │ ├── uninstall_homebrew.sh │ ├── update_homebrew.sh │ ├── vagrant │ │ ├── Vagranfile │ │ ├── VirtualBox Extension Pack │ │ ├── detect_resources.sh │ │ ├── mac_vm.sh │ │ └── vitualBox.sh │ └── virtualbox │ │ └── virtualbox.sh ├── Nym │ ├── install_nym.sh │ ├── menu_nym.sh │ └── uninstall_nym.sh ├── ParmaCloud │ ├── get_parmacloud.sh │ ├── start_stop_parmacloud.sh │ └── uninstall_parmacloud.sh ├── ParmaDesk │ ├── install_parmadesk.sh │ ├── install_parmadesk_dependencies.sh │ ├── make_parmadesk_log_cleanup_service.sh │ ├── make_parmadesk_service.sh │ ├── make_vnc_nginx.sh │ ├── menu_parmadesk.sh │ ├── parmadesk_tor.sh │ ├── sound_error_suppression.sh │ ├── start_stop_parmadesk.sh │ └── uninstall_parmadesk.sh ├── ParmaNostr │ ├── check_nostr_wallet_exists.sh │ ├── import_nostr_keys.sh │ ├── install_parmanostr.sh │ ├── install_parmawallet_dependencies.sh │ ├── intro_parmanostr.sh │ ├── make_nostr_key_files.sh │ ├── make_nostr_wallet.sh │ ├── make_npub.sh │ ├── make_nsec.sh │ ├── make_nsec_bytes.sh │ ├── make_priv_hex.sh │ ├── make_priv_hex_bytes.sh │ ├── make_pubkey.sh │ ├── make_sourcable_keys_file.sh │ ├── menu_parmanostr.sh │ ├── nostr_keys_byo.sh │ ├── nostr_keys_with_dice.sh │ ├── parmanostr_wallet_info.sh │ ├── send_event.sh │ └── uninstall_parmanostr.sh ├── ParmaRaid │ ├── assemble_RAID.sh │ ├── do_raid_stop_loop.sh │ ├── get_parmaraid.sh │ ├── menu_raid.sh │ ├── mount_RAID.sh │ ├── parmaraid_info.sh │ ├── raid_info.sh │ ├── stop_raids.sh │ └── unmount_raids.sh ├── ParmaShell │ ├── install_parmashell.sh │ ├── parmairgap_functions │ ├── parmashell_functions │ ├── parmashell_info.sh │ └── uninstall_parmashell.sh ├── ParmaWallet │ ├── classes │ │ ├── BIP32_master_node.py │ │ ├── FieldElement.py │ │ ├── S256.py │ │ ├── Script.py │ │ ├── Tx.py │ │ ├── __init__.py │ │ ├── point.py │ │ └── privatekey.py │ ├── deprecated │ │ ├── BIP39seed.py │ │ └── main2.py │ ├── docs │ │ ├── bip-39-wordlist.pdf │ │ └── english.txt │ ├── electrum_crack.sh │ ├── electrum_cracker │ │ ├── README.md │ │ └── crack.py │ ├── functions │ │ ├── PW_Base58.py │ │ ├── PW_cryptofunctions.py │ │ ├── PW_functions.py │ │ ├── PW_signing.py │ │ ├── __init__.py │ │ ├── old_functions.py │ │ ├── opcodes.py │ │ └── schnorr.py │ ├── functions2 │ │ ├── __init__.py │ │ ├── derive_keys.py │ │ └── pubkey_to_bech32.py │ ├── main.py │ ├── make_wallet.py │ ├── nostr │ │ ├── Eventclass.py │ │ ├── Requestclass.py │ │ ├── __init__.py │ │ ├── nostr_connect.py │ │ ├── sample_note.txt │ │ └── send_event.py │ ├── old │ │ ├── __init__.py │ │ ├── exercises.py │ │ ├── main.py │ │ ├── mprocess.py │ │ ├── practice.py │ │ ├── recovery_passphrase.py │ │ ├── recovery_words.py │ │ ├── test.py │ │ ├── wallet.py │ │ └── wallet2.py │ └── variables │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ └── variables.cpython-39.pyc │ │ └── variables.py ├── ParmaWeb │ ├── backup_website_database.sh │ ├── choose_database_name.sh │ ├── create_website_database.sh │ ├── delete_website_database.sh │ ├── get_a_domain.sh │ ├── get_parmaweb.sh │ ├── make_website_directories.sh │ ├── make_website_nginx.sh │ ├── max_upload_file_size_info.sh │ ├── menu_parmaweb.sh │ ├── menu_tor_webserver.sh │ ├── mysql_security_wizard.sh │ ├── remove_domain.sh │ ├── remove_nginx_sites_enabled.sh │ ├── remove_ssl_website.sh │ ├── restore_website_database.sh │ ├── setup_details.jpg │ ├── uninstall_parmaweb.sh │ ├── website_check_ports.sh │ ├── website_dependencies.sh │ ├── website_domain.sh │ ├── website_info.sh │ ├── website_intro.sh │ ├── website_ssl_on.sh │ ├── website_tor_add_remove.sh │ ├── website_update_system.sh │ └── wont_source │ │ └── website_expect_wizard.sh ├── ParmanodL │ ├── Linux_mint.pubkey │ ├── ParmanodL-PI-v3.0.0.torrent │ ├── ParmanodL_Installer.sh │ ├── ParmanodL_autostart.txt │ ├── ParmanodL_chroot_docker.sh │ ├── ParmanodL_cleanup.sh │ ├── ParmanodL_directories.sh │ ├── ParmanodL_docker_run.sh │ ├── ParmanodL_mount.sh │ ├── ParmanodL_success.sh │ ├── ParmanodL_unmount.sh │ ├── ParmanodL_write.sh │ ├── clean_known_hosts.sh │ ├── download_ParmanodL_image.sh │ ├── get_Mint.sh │ ├── get_PiOS.sh │ ├── get_parmanodl.sh │ ├── instructions.txt │ ├── make_Run_ParmanodL.sh │ └── unmount_microSD.sh ├── Thunderhub │ ├── build_thub.sh │ ├── copy_thub_env.sh │ ├── enable_tor_thunderhub.sh │ ├── install_thunderhub.sh │ ├── make_thub_env.sh │ ├── make_thunderhub_account.sh │ ├── master_password_thub.sh │ ├── menu_thunderhub.sh │ ├── run_thub_docker.sh │ ├── start_stop_thub.sh │ ├── thub_lnd.sh │ └── uninstall_thub.sh ├── X11 │ ├── install_X11.sh │ ├── install_xquartz.sh │ ├── menu_x11.sh │ ├── start_stop_xquartz.sh │ ├── toggle_x11.sh │ ├── uninstall_X11.sh │ ├── uninstall_xquartz.sh │ └── x11_preamble.sh ├── alby │ ├── install_alby.sh │ └── start_stop_alby.sh ├── anydesk │ ├── install_anydesk.sh │ ├── menu_anydesk.sh │ ├── start_anydesk.sh │ └── uninstall_anydesk.sh ├── bitbox │ ├── install_bitbox.sh │ ├── menu_bitbox.sh │ ├── run_bitbox.sh │ ├── uninstall_bitbox.sh │ └── verify_bitbox.sh ├── bitcoin │ ├── LD.asc │ ├── Parmans_assumevalid.txt │ ├── bitcoin_compile_instructions.sh │ ├── bitcoin_tor.sh │ ├── change_bitcoin_drive.sh │ ├── check_rpc_credentials_match.sh │ ├── check_rpc_global.sh │ ├── choose_bitcoin_version.sh │ ├── choose_bitcoin_version_mac.sh │ ├── compile_bitcoin.sh │ ├── delete_blockchain.sh │ ├── disable_bitcoin.sh │ ├── download_bitcoin.sh │ ├── filter_notice.sh │ ├── import_bitcoin_install.sh │ ├── install_bitcoin.sh │ ├── install_bitcoin_docker.sh │ ├── make_backup_dot_bitcoin.sh │ ├── make_bitcoin_conf.sh │ ├── make_bitcoin_directories.sh │ ├── make_bitcoin_symlinks.sh │ ├── make_bitcoind_service_file.sh │ ├── menu_bitcoin.sh │ ├── menu_bitcoin_cli.sh │ ├── menu_bitcoin_other.sh │ ├── menu_bitcoin_tor.sh │ ├── misc.sh │ ├── modify_prune.sh │ ├── offer_swap_to_external.sh │ ├── p4_install_bitcoin.sh │ ├── password_changer.sh │ ├── prune.sh │ ├── pruning_functions.sh │ ├── reindex_bitcoin.sh │ ├── remove_bitcoin_directories_linux.sh │ ├── remove_bitcoin_directories_mac.sh │ ├── rpcbind_adjust.sh │ ├── set_rpc_authentication.sh │ ├── start_stop_bitcoin.sh │ ├── store_BTC_container_IP.sh │ ├── toggle_bitcoin_rpc_tor.sh │ ├── uninstall_bitcoin.sh │ ├── update_bitcoin.sh │ ├── upgrade_to_knots.sh │ └── verify_bitcoin.sh ├── bre │ ├── bre_authentication.sh │ ├── bre_computer_speed.sh │ ├── disable_bre_tor.sh │ ├── enable_access.sh │ ├── enable_bre_tor.sh │ ├── install_btcrpcexplorer.sh │ ├── make_bre_service.sh │ ├── make_btcrpcexplorer_config.sh │ ├── menu_bre.sh │ ├── pruning_info.sh │ ├── recommend_bre_uninstall.sh │ ├── start_stop_bre.sh │ └── uninstall_btcrpcexplorer.sh ├── bre_docker │ ├── Dockerfile │ ├── bre_docker_IP_get.sh │ ├── bre_docker_build.sh │ ├── bre_docker_directories.sh │ ├── bre_docker_install.sh │ ├── bre_docker_intro.sh │ ├── bre_docker_modify_env.sh │ ├── bre_docker_restart.sh │ ├── bre_docker_run.sh │ ├── bre_docker_start_bre.sh │ ├── bre_docker_start_stop.sh │ ├── bre_docker_uninstall.sh │ └── bre_warnings.sh ├── btcpay │ ├── Dockerfile │ ├── Dockerfile_Mac │ ├── btcparmanpay.sh │ ├── btcpay_backup.sh │ ├── btcpay_compile_choice.sh │ ├── btcpay_config.sh │ ├── btcpay_install_preamble.sh │ ├── btcpay_install_restore_choice.sh │ ├── build_btcpay.sh │ ├── choose_btcpay_version.sh │ ├── connect_btcpay_to_lnd.sh │ ├── create_account_btcpay.sh │ ├── enable_tor_btcpay.sh │ ├── info_only │ │ ├── NBXplorer_service.txt │ │ ├── REST_connection.txt │ │ ├── btcpay_service.txt │ │ ├── get_LND_certificate.txt │ │ ├── make_btcpay_service.txt │ │ ├── make_nbxplorer_service.txt │ │ ├── pg_conf.txt │ │ └── port_forwarding.txt │ ├── initialise_postgres_btcpay.sh │ ├── install_btcpay_linux.sh │ ├── install_btcpay_mac.sh │ ├── install_btcpay_mac_child.sh │ ├── make_btc_pay_directories.sh │ ├── make_btcpay_startup_script.sh │ ├── menu_btcpay.sh │ ├── nbxplorer_config.sh │ ├── restore_btcpay.sh │ ├── run_btcpay_docker.sh │ ├── start_btcpay_indocker.sh │ ├── start_nbxplorer_indocker.sh │ ├── start_stop_btcpay.sh │ ├── uninstall_btcpay.sh │ └── user_pass_check_exists.sh ├── btcrecover │ ├── Dockerfile │ ├── fix_openssl_ripemd160.sh │ ├── install_btcrecover.sh │ ├── menu_btcrecover.sh │ └── uninstall_btcrecover.sh ├── coldcard │ ├── cc_firmware_instructions.sh │ ├── ccpubkey.asc │ ├── coldcard_firmware.sh │ ├── manual_cc.sh │ └── signatures.txt ├── communication │ ├── autossh_setup.sh │ ├── check_SSH.sh │ ├── make_parmanode_ca.sh │ ├── make_parmanode_cert.sh │ ├── make_socat_service.sh │ ├── make_ssh_keys.sh │ ├── make_ssl_certificates.sh │ ├── purge_dropbear.sh │ ├── restart_sshd.sh │ ├── sign_parmanode_cert.sh │ └── start_stop_socat.sh ├── config │ ├── app_versions.sh │ ├── build_config.sh │ ├── get_versions.sh │ ├── hide_messages.sh │ ├── installed_config.sh │ ├── log.sh │ ├── make_mount_check_script.sh │ ├── parmanode_conf.sh │ ├── parmanode_variables.sh │ └── whats_running.sh ├── core_lightning │ ├── import_core_lightning_gpg.sh │ ├── install_core_lightning.sh │ └── uninstall_core_lightning.sh ├── datum │ └── get_datum.sh ├── debug │ ├── d1.sh │ ├── debug.sh │ ├── nogsedtest.sh │ └── pause.sh ├── deis │ ├── deis.svg │ ├── deis_images │ │ └── deis.png │ ├── icons │ │ ├── deis.ico │ │ └── deis.png │ └── share │ │ └── pixmaps │ │ ├── bitcoin.xpm │ │ ├── bitcoin128.png │ │ ├── bitcoin128.xpm │ │ ├── bitcoin16.png │ │ ├── bitcoin16.xpm │ │ ├── bitcoin256.png │ │ ├── bitcoin256.xpm │ │ ├── bitcoin32.png │ │ ├── bitcoin32.xpm │ │ ├── bitcoin64.png │ │ ├── bitcoin64.xpm │ │ ├── nsis-header.bmp │ │ └── nsis-wizard.bmp ├── dependencies │ ├── bash_version_test.sh │ ├── curl_check.sh │ ├── gpg_check.sh │ ├── parmanode_dependencies.sh │ └── sudo_check.sh ├── docker │ ├── add_docker_group.sh │ ├── colima.sh │ ├── docker_package_download_linux.sh │ ├── docker_running.sh │ ├── docker_troubleshooting.sh │ ├── install_docker.sh │ ├── install_docker_linux.sh │ ├── install_docker_mac.sh │ ├── manual_docker_download_linux.sh │ ├── menu_docker.sh │ ├── start_docker_mac.sh │ ├── unable_install_docker_linux.sh │ ├── uninstall_docker_linux.sh │ └── uninstall_docker_mac.sh ├── drive_functions │ ├── UIDGID.sh │ ├── add_drive.sh │ ├── choose_and_prepare_drive.sh │ ├── compatibility.sh │ ├── confirm_raid_device.sh │ ├── dd_wipe_drive.sh │ ├── detect_drive.sh │ ├── detect_microSD.sh │ ├── format_ext_drive.sh │ ├── format_warnings.sh │ ├── get_UUID.sh │ ├── import_drive_options.sh │ ├── info_add_drive.sh │ ├── mount_drive.sh │ ├── mynode_import.sh │ ├── mynode_revert.sh │ ├── partition_drive.sh │ ├── pls_connect_drive.sh │ ├── raspiblitz_import.sh │ ├── raspiblitz_revert.sh │ ├── rm_after_before.sh │ ├── safe_unmount_parmanode.sh │ ├── select_drive_ID.sh │ ├── umbrel_drive_mods_with_docker.sh │ ├── umbrel_import.sh │ ├── umbrel_revert.sh │ ├── unmount.sh │ └── write_to_fstab.sh ├── education │ ├── 6rn.txt │ ├── MIT_lectures.sh │ ├── MIT_lectures.torrent │ ├── connect_wallet_info.sh │ ├── cool_stuff.sh │ ├── joinus.txt │ ├── less_function.sh │ ├── lnd_wallet_info.sh │ ├── mentorship.sh │ └── menu_education.sh ├── electrs │ ├── Dockerfile │ ├── Dockerfile_torrc │ ├── Dockerfile_torsocks.conf │ ├── backup_electrs.sh │ ├── build_dependencies_electrs.sh │ ├── compile_electrs.sh │ ├── docker_electrs_start_stop.sh │ ├── docker_run_electrs.sh │ ├── download_electrs.sh │ ├── electrs_backup_exists.sh │ ├── electrs_better_4pi.sh │ ├── electrs_bitcoinIP_change.sh │ ├── electrs_database_corrupted.sh │ ├── electrs_edit_user_pass.sh │ ├── electrs_to_remote.sh │ ├── electrs_tor.sh │ ├── electrs_tor_remove.sh │ ├── info_electrs.sh │ ├── install_cargo.sh │ ├── install_electrs.sh │ ├── install_electrs_docker.sh │ ├── make_electrs_config.sh │ ├── make_electrs_service.sh │ ├── menu_electrs.sh │ ├── preamble_install_electrs.sh │ ├── preamble_install_electrs_docker.sh │ ├── prepare_drive_electrs.sh │ ├── remove_electrs_db.sh │ ├── restore_electrs.sh │ ├── restore_internal_electrs_db.sh │ ├── start_stop_electrs.sh │ ├── uninstall_electrs.sh │ └── uninstall_electrs_docker.sh ├── electrum │ ├── choose_electrum_version.sh │ ├── clear_dot_electrum.sh │ ├── disable_electrum_tor.sh │ ├── download_electrum.sh │ ├── electrum_dependencies.sh │ ├── enable_electrum_tor.sh │ ├── extract_electrum.sh │ ├── install_electrum.sh │ ├── mac_electrum_applications.sh │ ├── make_electrum_config.sh │ ├── make_electrum_directories.sh │ ├── menu_electrum.sh │ ├── modify_electrum_config.sh │ ├── parmans_electrum_guide.sh │ ├── run_electrum.sh │ ├── set_permission_electrum.sh │ ├── uninstall_electrum.sh │ └── verify_electrum.sh ├── electrumx │ ├── download_electrumx.sh │ ├── electrumx_banner.sh │ ├── electrumx_database_corrupted.sh │ ├── electrumx_dependencies.sh │ ├── electrumx_tor.sh │ ├── electrumx_tor_remove.sh │ ├── install_electrumx.sh │ ├── make_electrumx_conf.sh │ ├── make_electrumx_service.sh │ ├── menu_electrumx.sh │ ├── preamble.sh │ ├── prepare_drive_electrumx.sh │ ├── restore_electrumx_drive.sh │ ├── restore_internal_electrumx_db.sh │ ├── start_stop_electrumx.sh │ └── uninstall_electrumx.sh ├── extras │ ├── get_books.sh │ └── install_htop.sh ├── fulcrum │ ├── Dockerfile │ ├── bitcoindIP_change_fulcrum.sh │ ├── build_fulcrum_docker.sh │ ├── database_corrupted.sh │ ├── docker_stop_fulcrum.sh │ ├── download_fulcrum.sh │ ├── edit_bitcoinIP_fulcrum_indocker.sh │ ├── edit_ssl_port_fulcrum_indocker.sh │ ├── edit_user_pass_fulcrum_conf.sh │ ├── edit_user_pass_fulcrum_docker.sh │ ├── extract_fulcrum_tar.sh │ ├── fulcrum_docker_IP_get.sh │ ├── fulcrum_install_files.sh │ ├── fulcrum_make_directories.sh │ ├── fulcrum_tor.sh │ ├── fulcrum_tor_remove.sh │ ├── install_fulcrum.sh │ ├── make_fulcrum_config.sh │ ├── make_fulcrum_service_file.sh │ ├── make_fulcrum_startup_script.sh │ ├── menu_fulcrum.sh │ ├── run_fulcrum_docker.sh │ ├── start_stop_fulcrum.sh │ ├── uninstall_fulcrum.sh │ └── verify_fulcrum.sh ├── graphics │ ├── bin1_empty.png │ ├── bin1_eth.png │ ├── favicon.ico │ ├── pn.png │ ├── pn_icon.png │ └── ssh_enable.png ├── green │ ├── install_green.sh │ ├── menu_green.sh │ ├── uninstall_green.sh │ └── verify_green.sh ├── i2p │ ├── install_i2p.sh │ ├── menu_i2p.sh │ ├── start_stop_i2p.sh │ └── uninstall_i2p.sh ├── joinmarket │ ├── Install_joinmarket.sh │ ├── check_socat_working.sh │ ├── configure_yg.sh │ ├── enable_joinmarket_tor.sh │ ├── jm_log_file_manager.sh │ ├── jmvenv.sh │ ├── ledger-live-desktop-2.89.1.sha512sum │ ├── make_joinmarket_config.sh │ ├── menu_joinmarket.sh │ ├── menu_joinmarket2.sh │ ├── menu_joinmarketwallet.sh │ ├── menu_yield_generator.sh │ ├── orderbook_access_info.sh │ ├── orderbook_jm.sh │ ├── parmajoin_info.sh │ ├── public_orderbook.sh │ ├── spending_info_jm.sh │ ├── uninstall_joinmarket.sh │ ├── wallet_functions.sh │ └── yield_generator.sh ├── ledger │ ├── install_ledger.sh │ ├── ledger-live-desktop-2.89.1.sha512sum.sig │ ├── ledgerlive.pem │ ├── menu_ledger.sh │ ├── run_ledger.sh │ ├── uninstall_ledger.sh │ ├── verify_ledger.sh │ └── warning_ledger.sh ├── litd │ ├── bitcoin_choice_with_litd.sh │ ├── download_litd.sh │ ├── enable_tor_littermianl.sh │ ├── install_litd.sh │ ├── make_lit_conf.sh │ ├── make_litd_directoreis.sh │ ├── make_litd_service.sh │ ├── make_nginx_litd.sh │ ├── menu_litterminal.sh │ ├── set_litd_password.sh │ ├── start_stop_litd.sh │ ├── uninstall_litd.sh │ ├── unpack_litd.sh │ └── verify_litd.sh ├── lnbits │ ├── configure_yourself.sh │ ├── install_lnbits.sh │ ├── menu_LNbits.sh │ ├── start_stop_lnbits.sh │ └── uninstall_lnbits.sh ├── lnd │ ├── bitcoin_choice_with_lnd.sh │ ├── change_lnd_port.sh │ ├── create_wallet.sh │ ├── delete_wallet.sh │ ├── download_lnd.sh │ ├── expose_LND.sh │ ├── fix_BTC_addr_btccombo.sh │ ├── get_extIP.sh │ ├── install_lnd.sh │ ├── lnd_TOR.sh │ ├── lnd_info.sh │ ├── lnd_macaroons.sh │ ├── lnd_password_change.sh │ ├── lnd_wallet_unlock_password.sh │ ├── make_lnd_conf.sh │ ├── make_lnd_directories.sh │ ├── make_lnd_service.sh │ ├── make_lnd_service_tor.sh │ ├── menu_lnd.sh │ ├── menu_lnd_more.sh │ ├── menu_lnd_wallet.sh │ ├── roasbeef.pgp │ ├── run_lnd(info).text │ ├── scb.sh │ ├── set_lnd_alias.sh │ ├── set_lnd_port.sh │ ├── start_stop_lnd.sh │ ├── store_LND_container_IP.sh │ ├── uninstall_lnd.sh │ ├── unpack_lnd.sh │ ├── update_lnd.sh │ ├── verify_lnd.sh │ └── watchtower.sh ├── lnd_docker │ ├── Dockerfile │ ├── build_lnd_dockerfile.sh │ ├── install_lnd_docker.sh │ ├── lnd_docker_run.sh │ ├── lnd_docker_start_stop.sh │ ├── modify_lnd_dockerfile.sh │ └── uninstall_lnd_docker.sh ├── mempool │ ├── change_mempool_backend.sh │ ├── enable_mempool_tor.sh │ ├── install_mempool.sh │ ├── make_mempool_docker_compose.sh │ ├── menu_mempool.sh │ ├── start_stop_mempool.sh │ └── uninstall_mempool.sh ├── misc │ ├── capslock.sh │ ├── clean_exit.sh │ ├── pn_tmux.sh │ ├── rp_count.sh │ ├── set_github_config.sh │ ├── test_standard_install.sh │ ├── udev.sh │ └── udev │ │ ├── 20-hw1.rules │ │ ├── 51-coinkite.rules │ │ ├── 51-trezor.rules │ │ ├── 51-usb-keepkey.rules │ │ ├── 53-hid-bitbox02.rules │ │ ├── 54-hid-bitbox02.rules │ │ └── 55-usb-jade.rules ├── nginx │ ├── install_nginx.sh │ ├── lnd_nginx_docker.sh │ ├── make_router_nginx.sh │ ├── menu_nginx.sh │ ├── nginx_clash.sh │ ├── nginx_public_pool_ui.sh │ ├── nginx_stream.sh │ ├── stream.conf │ ├── stream_lnd.conf │ ├── uninstall_nginx.sh │ └── uninstall_nginx_warning.sh ├── nodejs │ ├── check_nodejs.sh │ ├── get_nodejs_and_npm.sh │ ├── install_nodejs.sh │ ├── make_pi4_boot_from_usbdrive.txt │ └── update_npm.sh ├── nostr │ ├── add_custom_drive.sh │ ├── check_ready_for_ssl.sh │ ├── deprecated │ │ └── install_nostrrelay_podman.sh │ ├── install_nostrrelay.sh │ ├── install_nostrrelay_explorer.sh │ ├── menu_nostr.sh │ ├── nostr_data_exists_or_create.sh │ ├── nostr_ssl_on.sh │ ├── nostr_tor_add_remove.sh │ ├── nostr_website_directory.sh │ ├── nostrrelay_build.sh │ ├── nostrrelay_edit_config.sh │ ├── nostrrelay_reverse_proxy_info.sh │ ├── nostrrelay_run.sh │ ├── nostrrelay_server_name.sh │ ├── nostrrelay_start_stop.sh │ ├── restore_internal_nostr_data.sh │ └── uninstall_nostrrelay.sh ├── notes │ ├── Stop Spotlitght.png │ ├── VS Code.txt │ ├── bitcoin_curl.sh │ ├── docker_sphagetti.txt │ ├── grub_rescue.png │ ├── hidden files.png │ ├── host.docker.internal │ ├── how_to_chroot.txt │ ├── install_python3_on_mac.txt │ ├── mac-docker-compose.txt │ ├── makd_swapfile.png │ ├── network_connection_terminal.txt │ ├── partprobe.txt │ ├── print_line_number.txt │ ├── ripemed160.txt │ ├── sed.txt │ ├── signing_with_gpg.txt │ ├── torsocks_curl │ ├── umount_fail_mac.txt │ ├── vimrc │ └── wpa_supplicant.conf ├── parmabox │ ├── Dockerfile │ ├── install_parmabox.sh │ ├── menu_parmabox.sh │ ├── parmabox_build.sh │ ├── parmabox_exec.sh │ ├── parmabox_refresh.sh │ ├── parmanbox_run.sh │ └── uninstall_parmabox.sh ├── parmanode4 │ ├── addtoconfig.sh │ ├── countchar.sh │ ├── errorlog.sh │ ├── makedir.sh │ ├── p4progress.sh │ ├── p4run │ ├── p4run_maker.sh │ ├── p4socket.sh │ ├── parmaview.txt │ └── sudoers_patch.sh ├── parmanode_self │ ├── cleanup_bashrc_zshrc.sh │ ├── hello.sh │ ├── make_dot_parmanode.sh │ ├── make_home_parmanode.sh │ ├── parmanode1_fix.sh │ ├── parmanode_refresh.sh │ ├── runningoverview.sh │ ├── test_internet_connected.sh │ ├── uninstall_parmanode.sh │ ├── update_parmanode.sh │ └── update_version_info.sh ├── patches │ ├── add_rp_function.sh │ ├── apply_patches.sh │ ├── fix_gpg.sh │ ├── invalidate_block.sh │ ├── next_patch.sh │ ├── openssh_patch.sh │ ├── parmanode4_upgrade.sh │ ├── patch_10.sh │ ├── patch_1_2_3.sh │ ├── patch_4_5_6.sh │ ├── patch_7.sh │ ├── patch_8.sh │ ├── patch_9.sh │ ├── refresh_parmanode.sh │ ├── temp_patch.sh │ ├── tmux_patch.sh │ ├── urgent_patch.sh │ ├── urgent_patch_code │ └── usb_quirk.sh ├── phoenix_server │ ├── install_phoenix.sh │ ├── menu_phoenix.sh │ ├── phoenix_gpg_key.asc │ ├── start_stop_phoenix.sh │ └── uninstall_phoenix.sh ├── piapps │ ├── install_piapps.sh │ └── uninstall_piapps.sh ├── pihole │ ├── docker-compose(mac).yaml │ ├── docker-compose.yaml │ ├── info_pihole.sh │ ├── intstall_pihole.sh │ ├── menu_pihole.sh │ ├── set_static_IP.sh │ ├── start_stop_pihole.sh │ ├── systemd-resolved_disable.sh │ └── uninstall_pihole.sh ├── premium │ ├── check_ext_ip_update_automation_allowed.sh │ ├── get_parmanas.sh │ ├── get_parmanpremium.sh │ ├── get_parmascale.sh │ ├── get_parmasql.sh │ ├── get_parmasync.sh │ ├── get_parmatwin.sh │ ├── get_parminer.sh │ ├── install_borg.sh │ ├── install_sshfs.sh │ ├── menu_parmadrive.sh │ └── menu_parmadrive_raid.sh ├── public_pool │ ├── Deprecated │ │ ├── add_backslash_pool_Dockerfile.py │ │ └── python_edit_add_backslash.py │ ├── Dockerfile │ ├── check_port_conflicts_public_pool.sh │ ├── environment.prod.ts │ ├── environment.ts │ ├── install_public_pool.sh │ ├── make_public-pool_env.sh │ ├── menu_public_pool.sh │ ├── start_stop_public_pool.sh │ ├── tor_public_pool.sh │ └── uninstall_public_pool.sh ├── qbittorrent │ ├── install_qbittorrent.sh │ ├── menu_qbittorrent.sh │ ├── start_qbittorrent.sh │ └── uninstall_qbittorrent.sh ├── rsync │ └── rsync.sh ├── rtl │ ├── Dockerfile │ ├── enable_tor_rtl.sh │ ├── install_rtl.sh │ ├── make_rtl_config.sh │ ├── menu_rtl.sh │ ├── reset_rtl_lnd.sh │ ├── rtl_password.sh │ ├── rtl_password_changer.sh │ ├── run_rtl_docker.sh │ ├── start_rtl.sh │ └── uninstall_rtl.sh ├── sparrow │ ├── clear_sparrow.sh │ ├── config │ ├── download_sparrow.sh │ ├── install_sparrow.sh │ ├── make_sparrow_config.sh │ ├── menu_sparrow.sh │ ├── run_sparrow.sh │ ├── sparow_remote.sh │ ├── troubleshooting_sparrow.sh │ ├── uninstall_sparrow.sh │ └── verify_sparrow.sh ├── specter │ ├── download_specter.sh │ ├── install_specter.sh │ ├── menu_specter.sh │ ├── run_specter.sh │ ├── specter_mac_warning.sh │ ├── specter_make_dir.sh │ ├── uninstall_specter.sh │ ├── unpack_specter.sh │ └── verify_specter.sh ├── start │ ├── check_installed_programs.sh │ ├── custom_startup.sh │ ├── do_loop.sh │ ├── instructions.sh │ ├── intro.sh │ ├── motd.sh │ └── source_premium.sh ├── system │ ├── apt_get_update.sh │ ├── autoupdate.sh │ ├── bash_check.sh │ ├── get_ip.sh │ ├── get_linux_version_codename.sh │ ├── linux_distro.sh │ ├── system_info.sh │ ├── update_computer.sh │ └── which_computer_type.sh ├── text_functions │ ├── about.sh │ ├── amusement.sh │ ├── are_you_sure.sh │ ├── change_colours.sh │ ├── check_variables.sh │ ├── choose_proforma │ ├── clear_buffer.sh │ ├── command_tip.sh │ ├── echo_choices.sh │ ├── get_unique_line.sh │ ├── install_vim.sh │ ├── log_counter.sh │ ├── menu_template.txt │ ├── no_mac.sh │ ├── quit.sh │ ├── rossisfree.sh │ ├── set_colours.sh │ ├── set_terminal.sh │ ├── sned_sats.sh │ ├── something_went_wrong.sh │ ├── success_failure.sh │ ├── truncatedebuglog.sh │ ├── vim_warning.sh │ └── yesorno.sh ├── tools │ ├── UTXOracle.py │ ├── adjust_ssd_power_saving.sh │ ├── badblocks_check.sh │ ├── change_hostname.sh │ ├── check_disk_space.sh │ ├── desktop_icon.sh │ ├── drive_encryption.sh │ ├── format_assist.sh │ ├── free_up_space.sh │ ├── grpcurl_call.sh │ ├── install_grub.sh │ ├── install_gsed.sh │ ├── install_jq.sh │ ├── install_qrencode.sh │ ├── install_veracrypt.sh │ ├── make_external_IP_script.sh │ ├── menu_iptables.sh │ ├── menu_tools.sh │ ├── pay_lightning_address.sh │ ├── qrencde.sh │ ├── rcfile │ ├── rest_protocol_test.sh │ ├── screen_video_recording.sh │ ├── see_local_devices.sh │ ├── spoof_mac.sh │ ├── system_report.sh │ └── wireless_driver_install.sh ├── tor │ ├── enable_tor_general.sh │ ├── get_onion_address_variable.sh │ ├── install_tor.sh │ ├── install_tor_webserver.sh │ ├── install_torbrowser.sh │ ├── install_torrelay.sh │ ├── install_torssh.sh │ ├── make_parmanode_tor_service.sh │ ├── menu_tor.sh │ ├── menu_torbrowser.sh │ ├── menu_torrelay.sh │ ├── menu_torssh.sh │ ├── overview.txt │ ├── start_stop_tor.sh │ ├── tor_server_info.sh │ ├── tor_status.sh │ ├── torrely_intro.sh │ ├── uninstall_tor.sh │ ├── uninstall_tor_webserver.sh │ ├── uninstall_torbrowser.sh │ ├── uninstall_torrelay.sh │ └── uninstall_torssh.sh ├── trezor │ ├── install_trezor.sh │ ├── menu_trezor.sh │ ├── run_trezor.sh │ ├── uninstall_trezor.sh │ └── verify_trezor.sh ├── uddns │ └── get_uddns.sh ├── unfinished │ ├── Restart_template.txt │ └── web_interface │ │ ├── blocking _socket.py │ │ └── parmanode_sock.py └── vaultwarden │ ├── install_vaultwarden.sh │ ├── make_vaultwarden_nginx.sh │ ├── menu_vaultwarden.sh │ ├── start_stop_vaultwarden.sh │ ├── uninstall_vaultwarden.sh │ └── vaultwarden_tor.sh ├── terms_and_conditions.txt └── version.conf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/.gitignore -------------------------------------------------------------------------------- /.todo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/.todo.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/README.md -------------------------------------------------------------------------------- /changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/changelog.txt -------------------------------------------------------------------------------- /refresh_parmanode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/refresh_parmanode.sh -------------------------------------------------------------------------------- /run_parmanode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/run_parmanode.sh -------------------------------------------------------------------------------- /source_parmanode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/source_parmanode.sh -------------------------------------------------------------------------------- /src/Deprecated/not_used/nginx_electrs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/Deprecated/not_used/nginx_electrs.sh -------------------------------------------------------------------------------- /src/MENUS/back2main.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/MENUS/back2main.sh -------------------------------------------------------------------------------- /src/MENUS/jump.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/MENUS/jump.sh -------------------------------------------------------------------------------- /src/MENUS/menu_add.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/MENUS/menu_add.sh -------------------------------------------------------------------------------- /src/MENUS/menu_add_extras.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/MENUS/menu_add_extras.sh -------------------------------------------------------------------------------- /src/MENUS/menu_add_node.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/MENUS/menu_add_node.sh -------------------------------------------------------------------------------- /src/MENUS/menu_add_other.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/MENUS/menu_add_other.sh -------------------------------------------------------------------------------- /src/MENUS/menu_add_source.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/MENUS/menu_add_source.sh -------------------------------------------------------------------------------- /src/MENUS/menu_add_wallets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/MENUS/menu_add_wallets.sh -------------------------------------------------------------------------------- /src/MENUS/menu_drives.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/MENUS/menu_drives.sh -------------------------------------------------------------------------------- /src/MENUS/menu_log_config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/MENUS/menu_log_config.sh -------------------------------------------------------------------------------- /src/MENUS/menu_main.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/MENUS/menu_main.sh -------------------------------------------------------------------------------- /src/MENUS/menu_migrate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/MENUS/menu_migrate.sh -------------------------------------------------------------------------------- /src/MENUS/menu_overview.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/MENUS/menu_overview.sh -------------------------------------------------------------------------------- /src/MENUS/menu_parmanbooks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/MENUS/menu_parmanbooks.sh -------------------------------------------------------------------------------- /src/MENUS/menu_premium.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/MENUS/menu_premium.sh -------------------------------------------------------------------------------- /src/MENUS/menu_remove.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/MENUS/menu_remove.sh -------------------------------------------------------------------------------- /src/MENUS/menu_settings.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/MENUS/menu_settings.sh -------------------------------------------------------------------------------- /src/MENUS/menu_use.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/MENUS/menu_use.sh -------------------------------------------------------------------------------- /src/MENUS/parmans_help.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/MENUS/parmans_help.sh -------------------------------------------------------------------------------- /src/Mac/brew_check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/Mac/brew_check.sh -------------------------------------------------------------------------------- /src/Mac/cldt_check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/Mac/cldt_check.sh -------------------------------------------------------------------------------- /src/Mac/get_Mac_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/Mac/get_Mac_version.sh -------------------------------------------------------------------------------- /src/Mac/gsed_symlink.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/Mac/gsed_symlink.sh -------------------------------------------------------------------------------- /src/Mac/install_gpg4mac.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/Mac/install_gpg4mac.sh -------------------------------------------------------------------------------- /src/Mac/install_homebrew.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/Mac/install_homebrew.sh -------------------------------------------------------------------------------- /src/Mac/qemu/install_qemu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/Mac/qemu/install_qemu.sh -------------------------------------------------------------------------------- /src/Mac/turn_off_spotlight.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/Mac/turn_off_spotlight.sh -------------------------------------------------------------------------------- /src/Mac/uninstall_homebrew.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/Mac/uninstall_homebrew.sh -------------------------------------------------------------------------------- /src/Mac/update_homebrew.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/Mac/update_homebrew.sh -------------------------------------------------------------------------------- /src/Mac/vagrant/Vagranfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/Mac/vagrant/Vagranfile -------------------------------------------------------------------------------- /src/Mac/vagrant/VirtualBox Extension Pack: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Mac/vagrant/detect_resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/Mac/vagrant/detect_resources.sh -------------------------------------------------------------------------------- /src/Mac/vagrant/mac_vm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/Mac/vagrant/mac_vm.sh -------------------------------------------------------------------------------- /src/Mac/vagrant/vitualBox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/Mac/vagrant/vitualBox.sh -------------------------------------------------------------------------------- /src/Mac/virtualbox/virtualbox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/Mac/virtualbox/virtualbox.sh -------------------------------------------------------------------------------- /src/Nym/install_nym.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/Nym/install_nym.sh -------------------------------------------------------------------------------- /src/Nym/menu_nym.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/Nym/menu_nym.sh -------------------------------------------------------------------------------- /src/Nym/uninstall_nym.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/Nym/uninstall_nym.sh -------------------------------------------------------------------------------- /src/ParmaCloud/get_parmacloud.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmaCloud/get_parmacloud.sh -------------------------------------------------------------------------------- /src/ParmaCloud/start_stop_parmacloud.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmaCloud/start_stop_parmacloud.sh -------------------------------------------------------------------------------- /src/ParmaCloud/uninstall_parmacloud.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmaCloud/uninstall_parmacloud.sh -------------------------------------------------------------------------------- /src/ParmaDesk/install_parmadesk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmaDesk/install_parmadesk.sh -------------------------------------------------------------------------------- /src/ParmaDesk/make_parmadesk_service.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmaDesk/make_parmadesk_service.sh -------------------------------------------------------------------------------- /src/ParmaDesk/make_vnc_nginx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmaDesk/make_vnc_nginx.sh -------------------------------------------------------------------------------- /src/ParmaDesk/menu_parmadesk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmaDesk/menu_parmadesk.sh -------------------------------------------------------------------------------- /src/ParmaDesk/parmadesk_tor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmaDesk/parmadesk_tor.sh -------------------------------------------------------------------------------- /src/ParmaDesk/sound_error_suppression.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmaDesk/sound_error_suppression.sh -------------------------------------------------------------------------------- /src/ParmaDesk/start_stop_parmadesk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmaDesk/start_stop_parmadesk.sh -------------------------------------------------------------------------------- /src/ParmaDesk/uninstall_parmadesk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmaDesk/uninstall_parmadesk.sh -------------------------------------------------------------------------------- /src/ParmaNostr/import_nostr_keys.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmaNostr/import_nostr_keys.sh -------------------------------------------------------------------------------- /src/ParmaNostr/install_parmanostr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmaNostr/install_parmanostr.sh -------------------------------------------------------------------------------- /src/ParmaNostr/intro_parmanostr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmaNostr/intro_parmanostr.sh -------------------------------------------------------------------------------- /src/ParmaNostr/make_nostr_key_files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmaNostr/make_nostr_key_files.sh -------------------------------------------------------------------------------- /src/ParmaNostr/make_nostr_wallet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmaNostr/make_nostr_wallet.sh -------------------------------------------------------------------------------- /src/ParmaNostr/make_npub.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmaNostr/make_npub.sh -------------------------------------------------------------------------------- /src/ParmaNostr/make_nsec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmaNostr/make_nsec.sh -------------------------------------------------------------------------------- /src/ParmaNostr/make_nsec_bytes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmaNostr/make_nsec_bytes.sh -------------------------------------------------------------------------------- /src/ParmaNostr/make_priv_hex.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmaNostr/make_priv_hex.sh -------------------------------------------------------------------------------- /src/ParmaNostr/make_priv_hex_bytes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmaNostr/make_priv_hex_bytes.sh -------------------------------------------------------------------------------- /src/ParmaNostr/make_pubkey.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmaNostr/make_pubkey.sh -------------------------------------------------------------------------------- /src/ParmaNostr/menu_parmanostr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmaNostr/menu_parmanostr.sh -------------------------------------------------------------------------------- /src/ParmaNostr/nostr_keys_byo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmaNostr/nostr_keys_byo.sh -------------------------------------------------------------------------------- /src/ParmaNostr/nostr_keys_with_dice.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmaNostr/nostr_keys_with_dice.sh -------------------------------------------------------------------------------- /src/ParmaNostr/parmanostr_wallet_info.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmaNostr/parmanostr_wallet_info.sh -------------------------------------------------------------------------------- /src/ParmaNostr/send_event.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmaNostr/send_event.sh -------------------------------------------------------------------------------- /src/ParmaNostr/uninstall_parmanostr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmaNostr/uninstall_parmanostr.sh -------------------------------------------------------------------------------- /src/ParmaRaid/assemble_RAID.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmaRaid/assemble_RAID.sh -------------------------------------------------------------------------------- /src/ParmaRaid/do_raid_stop_loop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmaRaid/do_raid_stop_loop.sh -------------------------------------------------------------------------------- /src/ParmaRaid/get_parmaraid.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmaRaid/get_parmaraid.sh -------------------------------------------------------------------------------- /src/ParmaRaid/menu_raid.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmaRaid/menu_raid.sh -------------------------------------------------------------------------------- /src/ParmaRaid/mount_RAID.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmaRaid/mount_RAID.sh -------------------------------------------------------------------------------- /src/ParmaRaid/parmaraid_info.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmaRaid/parmaraid_info.sh -------------------------------------------------------------------------------- /src/ParmaRaid/raid_info.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmaRaid/raid_info.sh -------------------------------------------------------------------------------- /src/ParmaRaid/stop_raids.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmaRaid/stop_raids.sh -------------------------------------------------------------------------------- /src/ParmaRaid/unmount_raids.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmaRaid/unmount_raids.sh -------------------------------------------------------------------------------- /src/ParmaShell/install_parmashell.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmaShell/install_parmashell.sh -------------------------------------------------------------------------------- /src/ParmaShell/parmairgap_functions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmaShell/parmairgap_functions -------------------------------------------------------------------------------- /src/ParmaShell/parmashell_functions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmaShell/parmashell_functions -------------------------------------------------------------------------------- /src/ParmaShell/parmashell_info.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmaShell/parmashell_info.sh -------------------------------------------------------------------------------- /src/ParmaShell/uninstall_parmashell.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmaShell/uninstall_parmashell.sh -------------------------------------------------------------------------------- /src/ParmaWallet/classes/FieldElement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmaWallet/classes/FieldElement.py -------------------------------------------------------------------------------- /src/ParmaWallet/classes/S256.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmaWallet/classes/S256.py -------------------------------------------------------------------------------- /src/ParmaWallet/classes/Script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmaWallet/classes/Script.py -------------------------------------------------------------------------------- /src/ParmaWallet/classes/Tx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmaWallet/classes/Tx.py -------------------------------------------------------------------------------- /src/ParmaWallet/classes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmaWallet/classes/__init__.py -------------------------------------------------------------------------------- /src/ParmaWallet/classes/point.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmaWallet/classes/point.py -------------------------------------------------------------------------------- /src/ParmaWallet/classes/privatekey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmaWallet/classes/privatekey.py -------------------------------------------------------------------------------- /src/ParmaWallet/deprecated/BIP39seed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmaWallet/deprecated/BIP39seed.py -------------------------------------------------------------------------------- /src/ParmaWallet/deprecated/main2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmaWallet/deprecated/main2.py -------------------------------------------------------------------------------- /src/ParmaWallet/docs/bip-39-wordlist.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmaWallet/docs/bip-39-wordlist.pdf -------------------------------------------------------------------------------- /src/ParmaWallet/docs/english.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmaWallet/docs/english.txt -------------------------------------------------------------------------------- /src/ParmaWallet/electrum_crack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmaWallet/electrum_crack.sh -------------------------------------------------------------------------------- /src/ParmaWallet/electrum_cracker/crack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmaWallet/electrum_cracker/crack.py -------------------------------------------------------------------------------- /src/ParmaWallet/functions/PW_Base58.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmaWallet/functions/PW_Base58.py -------------------------------------------------------------------------------- /src/ParmaWallet/functions/PW_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmaWallet/functions/PW_functions.py -------------------------------------------------------------------------------- /src/ParmaWallet/functions/PW_signing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmaWallet/functions/PW_signing.py -------------------------------------------------------------------------------- /src/ParmaWallet/functions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmaWallet/functions/__init__.py -------------------------------------------------------------------------------- /src/ParmaWallet/functions/opcodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmaWallet/functions/opcodes.py -------------------------------------------------------------------------------- /src/ParmaWallet/functions/schnorr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmaWallet/functions/schnorr.py -------------------------------------------------------------------------------- /src/ParmaWallet/functions2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmaWallet/functions2/__init__.py -------------------------------------------------------------------------------- /src/ParmaWallet/functions2/derive_keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmaWallet/functions2/derive_keys.py -------------------------------------------------------------------------------- /src/ParmaWallet/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmaWallet/main.py -------------------------------------------------------------------------------- /src/ParmaWallet/make_wallet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmaWallet/make_wallet.py -------------------------------------------------------------------------------- /src/ParmaWallet/nostr/Eventclass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmaWallet/nostr/Eventclass.py -------------------------------------------------------------------------------- /src/ParmaWallet/nostr/Requestclass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmaWallet/nostr/Requestclass.py -------------------------------------------------------------------------------- /src/ParmaWallet/nostr/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmaWallet/nostr/__init__.py -------------------------------------------------------------------------------- /src/ParmaWallet/nostr/nostr_connect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmaWallet/nostr/nostr_connect.py -------------------------------------------------------------------------------- /src/ParmaWallet/nostr/sample_note.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmaWallet/nostr/sample_note.txt -------------------------------------------------------------------------------- /src/ParmaWallet/nostr/send_event.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ParmaWallet/old/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ParmaWallet/old/exercises.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmaWallet/old/exercises.py -------------------------------------------------------------------------------- /src/ParmaWallet/old/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmaWallet/old/main.py -------------------------------------------------------------------------------- /src/ParmaWallet/old/mprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmaWallet/old/mprocess.py -------------------------------------------------------------------------------- /src/ParmaWallet/old/practice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmaWallet/old/practice.py -------------------------------------------------------------------------------- /src/ParmaWallet/old/recovery_words.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmaWallet/old/recovery_words.py -------------------------------------------------------------------------------- /src/ParmaWallet/old/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmaWallet/old/test.py -------------------------------------------------------------------------------- /src/ParmaWallet/old/wallet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmaWallet/old/wallet.py -------------------------------------------------------------------------------- /src/ParmaWallet/old/wallet2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmaWallet/old/wallet2.py -------------------------------------------------------------------------------- /src/ParmaWallet/variables/__init__.py: -------------------------------------------------------------------------------- 1 | from .variables import * -------------------------------------------------------------------------------- /src/ParmaWallet/variables/variables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmaWallet/variables/variables.py -------------------------------------------------------------------------------- /src/ParmaWeb/backup_website_database.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmaWeb/backup_website_database.sh -------------------------------------------------------------------------------- /src/ParmaWeb/choose_database_name.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmaWeb/choose_database_name.sh -------------------------------------------------------------------------------- /src/ParmaWeb/create_website_database.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmaWeb/create_website_database.sh -------------------------------------------------------------------------------- /src/ParmaWeb/delete_website_database.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmaWeb/delete_website_database.sh -------------------------------------------------------------------------------- /src/ParmaWeb/get_a_domain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmaWeb/get_a_domain.sh -------------------------------------------------------------------------------- /src/ParmaWeb/get_parmaweb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmaWeb/get_parmaweb.sh -------------------------------------------------------------------------------- /src/ParmaWeb/make_website_directories.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmaWeb/make_website_directories.sh -------------------------------------------------------------------------------- /src/ParmaWeb/make_website_nginx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmaWeb/make_website_nginx.sh -------------------------------------------------------------------------------- /src/ParmaWeb/max_upload_file_size_info.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmaWeb/max_upload_file_size_info.sh -------------------------------------------------------------------------------- /src/ParmaWeb/menu_parmaweb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmaWeb/menu_parmaweb.sh -------------------------------------------------------------------------------- /src/ParmaWeb/menu_tor_webserver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmaWeb/menu_tor_webserver.sh -------------------------------------------------------------------------------- /src/ParmaWeb/mysql_security_wizard.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmaWeb/mysql_security_wizard.sh -------------------------------------------------------------------------------- /src/ParmaWeb/remove_domain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmaWeb/remove_domain.sh -------------------------------------------------------------------------------- /src/ParmaWeb/remove_ssl_website.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmaWeb/remove_ssl_website.sh -------------------------------------------------------------------------------- /src/ParmaWeb/restore_website_database.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmaWeb/restore_website_database.sh -------------------------------------------------------------------------------- /src/ParmaWeb/setup_details.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmaWeb/setup_details.jpg -------------------------------------------------------------------------------- /src/ParmaWeb/uninstall_parmaweb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmaWeb/uninstall_parmaweb.sh -------------------------------------------------------------------------------- /src/ParmaWeb/website_check_ports.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmaWeb/website_check_ports.sh -------------------------------------------------------------------------------- /src/ParmaWeb/website_dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmaWeb/website_dependencies.sh -------------------------------------------------------------------------------- /src/ParmaWeb/website_domain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmaWeb/website_domain.sh -------------------------------------------------------------------------------- /src/ParmaWeb/website_info.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmaWeb/website_info.sh -------------------------------------------------------------------------------- /src/ParmaWeb/website_intro.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmaWeb/website_intro.sh -------------------------------------------------------------------------------- /src/ParmaWeb/website_ssl_on.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmaWeb/website_ssl_on.sh -------------------------------------------------------------------------------- /src/ParmaWeb/website_tor_add_remove.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmaWeb/website_tor_add_remove.sh -------------------------------------------------------------------------------- /src/ParmaWeb/website_update_system.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmaWeb/website_update_system.sh -------------------------------------------------------------------------------- /src/ParmanodL/Linux_mint.pubkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmanodL/Linux_mint.pubkey -------------------------------------------------------------------------------- /src/ParmanodL/ParmanodL-PI-v3.0.0.torrent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmanodL/ParmanodL-PI-v3.0.0.torrent -------------------------------------------------------------------------------- /src/ParmanodL/ParmanodL_Installer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmanodL/ParmanodL_Installer.sh -------------------------------------------------------------------------------- /src/ParmanodL/ParmanodL_autostart.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmanodL/ParmanodL_autostart.txt -------------------------------------------------------------------------------- /src/ParmanodL/ParmanodL_chroot_docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmanodL/ParmanodL_chroot_docker.sh -------------------------------------------------------------------------------- /src/ParmanodL/ParmanodL_cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmanodL/ParmanodL_cleanup.sh -------------------------------------------------------------------------------- /src/ParmanodL/ParmanodL_directories.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmanodL/ParmanodL_directories.sh -------------------------------------------------------------------------------- /src/ParmanodL/ParmanodL_docker_run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmanodL/ParmanodL_docker_run.sh -------------------------------------------------------------------------------- /src/ParmanodL/ParmanodL_mount.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmanodL/ParmanodL_mount.sh -------------------------------------------------------------------------------- /src/ParmanodL/ParmanodL_success.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmanodL/ParmanodL_success.sh -------------------------------------------------------------------------------- /src/ParmanodL/ParmanodL_unmount.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmanodL/ParmanodL_unmount.sh -------------------------------------------------------------------------------- /src/ParmanodL/ParmanodL_write.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmanodL/ParmanodL_write.sh -------------------------------------------------------------------------------- /src/ParmanodL/clean_known_hosts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmanodL/clean_known_hosts.sh -------------------------------------------------------------------------------- /src/ParmanodL/download_ParmanodL_image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmanodL/download_ParmanodL_image.sh -------------------------------------------------------------------------------- /src/ParmanodL/get_Mint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmanodL/get_Mint.sh -------------------------------------------------------------------------------- /src/ParmanodL/get_PiOS.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmanodL/get_PiOS.sh -------------------------------------------------------------------------------- /src/ParmanodL/get_parmanodl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmanodL/get_parmanodl.sh -------------------------------------------------------------------------------- /src/ParmanodL/instructions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmanodL/instructions.txt -------------------------------------------------------------------------------- /src/ParmanodL/make_Run_ParmanodL.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmanodL/make_Run_ParmanodL.sh -------------------------------------------------------------------------------- /src/ParmanodL/unmount_microSD.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ParmanodL/unmount_microSD.sh -------------------------------------------------------------------------------- /src/Thunderhub/build_thub.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/Thunderhub/build_thub.sh -------------------------------------------------------------------------------- /src/Thunderhub/copy_thub_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/Thunderhub/copy_thub_env.sh -------------------------------------------------------------------------------- /src/Thunderhub/enable_tor_thunderhub.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/Thunderhub/enable_tor_thunderhub.sh -------------------------------------------------------------------------------- /src/Thunderhub/install_thunderhub.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/Thunderhub/install_thunderhub.sh -------------------------------------------------------------------------------- /src/Thunderhub/make_thub_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/Thunderhub/make_thub_env.sh -------------------------------------------------------------------------------- /src/Thunderhub/make_thunderhub_account.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/Thunderhub/make_thunderhub_account.sh -------------------------------------------------------------------------------- /src/Thunderhub/master_password_thub.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/Thunderhub/master_password_thub.sh -------------------------------------------------------------------------------- /src/Thunderhub/menu_thunderhub.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/Thunderhub/menu_thunderhub.sh -------------------------------------------------------------------------------- /src/Thunderhub/run_thub_docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/Thunderhub/run_thub_docker.sh -------------------------------------------------------------------------------- /src/Thunderhub/start_stop_thub.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/Thunderhub/start_stop_thub.sh -------------------------------------------------------------------------------- /src/Thunderhub/thub_lnd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/Thunderhub/thub_lnd.sh -------------------------------------------------------------------------------- /src/Thunderhub/uninstall_thub.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/Thunderhub/uninstall_thub.sh -------------------------------------------------------------------------------- /src/X11/install_X11.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/X11/install_X11.sh -------------------------------------------------------------------------------- /src/X11/install_xquartz.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/X11/install_xquartz.sh -------------------------------------------------------------------------------- /src/X11/menu_x11.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/X11/menu_x11.sh -------------------------------------------------------------------------------- /src/X11/start_stop_xquartz.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/X11/start_stop_xquartz.sh -------------------------------------------------------------------------------- /src/X11/toggle_x11.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/X11/toggle_x11.sh -------------------------------------------------------------------------------- /src/X11/uninstall_X11.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/X11/uninstall_X11.sh -------------------------------------------------------------------------------- /src/X11/uninstall_xquartz.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/X11/uninstall_xquartz.sh -------------------------------------------------------------------------------- /src/X11/x11_preamble.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/X11/x11_preamble.sh -------------------------------------------------------------------------------- /src/alby/install_alby.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/alby/install_alby.sh -------------------------------------------------------------------------------- /src/alby/start_stop_alby.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/alby/start_stop_alby.sh -------------------------------------------------------------------------------- /src/anydesk/install_anydesk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/anydesk/install_anydesk.sh -------------------------------------------------------------------------------- /src/anydesk/menu_anydesk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/anydesk/menu_anydesk.sh -------------------------------------------------------------------------------- /src/anydesk/start_anydesk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/anydesk/start_anydesk.sh -------------------------------------------------------------------------------- /src/anydesk/uninstall_anydesk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/anydesk/uninstall_anydesk.sh -------------------------------------------------------------------------------- /src/bitbox/install_bitbox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/bitbox/install_bitbox.sh -------------------------------------------------------------------------------- /src/bitbox/menu_bitbox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/bitbox/menu_bitbox.sh -------------------------------------------------------------------------------- /src/bitbox/run_bitbox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/bitbox/run_bitbox.sh -------------------------------------------------------------------------------- /src/bitbox/uninstall_bitbox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/bitbox/uninstall_bitbox.sh -------------------------------------------------------------------------------- /src/bitbox/verify_bitbox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/bitbox/verify_bitbox.sh -------------------------------------------------------------------------------- /src/bitcoin/LD.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/bitcoin/LD.asc -------------------------------------------------------------------------------- /src/bitcoin/Parmans_assumevalid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/bitcoin/Parmans_assumevalid.txt -------------------------------------------------------------------------------- /src/bitcoin/bitcoin_tor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/bitcoin/bitcoin_tor.sh -------------------------------------------------------------------------------- /src/bitcoin/change_bitcoin_drive.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/bitcoin/change_bitcoin_drive.sh -------------------------------------------------------------------------------- /src/bitcoin/check_rpc_global.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/bitcoin/check_rpc_global.sh -------------------------------------------------------------------------------- /src/bitcoin/choose_bitcoin_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/bitcoin/choose_bitcoin_version.sh -------------------------------------------------------------------------------- /src/bitcoin/choose_bitcoin_version_mac.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/bitcoin/choose_bitcoin_version_mac.sh -------------------------------------------------------------------------------- /src/bitcoin/compile_bitcoin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/bitcoin/compile_bitcoin.sh -------------------------------------------------------------------------------- /src/bitcoin/delete_blockchain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/bitcoin/delete_blockchain.sh -------------------------------------------------------------------------------- /src/bitcoin/disable_bitcoin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/bitcoin/disable_bitcoin.sh -------------------------------------------------------------------------------- /src/bitcoin/download_bitcoin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/bitcoin/download_bitcoin.sh -------------------------------------------------------------------------------- /src/bitcoin/filter_notice.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/bitcoin/filter_notice.sh -------------------------------------------------------------------------------- /src/bitcoin/import_bitcoin_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/bitcoin/import_bitcoin_install.sh -------------------------------------------------------------------------------- /src/bitcoin/install_bitcoin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/bitcoin/install_bitcoin.sh -------------------------------------------------------------------------------- /src/bitcoin/install_bitcoin_docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/bitcoin/install_bitcoin_docker.sh -------------------------------------------------------------------------------- /src/bitcoin/make_backup_dot_bitcoin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/bitcoin/make_backup_dot_bitcoin.sh -------------------------------------------------------------------------------- /src/bitcoin/make_bitcoin_conf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/bitcoin/make_bitcoin_conf.sh -------------------------------------------------------------------------------- /src/bitcoin/make_bitcoin_directories.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/bitcoin/make_bitcoin_directories.sh -------------------------------------------------------------------------------- /src/bitcoin/make_bitcoin_symlinks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/bitcoin/make_bitcoin_symlinks.sh -------------------------------------------------------------------------------- /src/bitcoin/make_bitcoind_service_file.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/bitcoin/make_bitcoind_service_file.sh -------------------------------------------------------------------------------- /src/bitcoin/menu_bitcoin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/bitcoin/menu_bitcoin.sh -------------------------------------------------------------------------------- /src/bitcoin/menu_bitcoin_cli.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/bitcoin/menu_bitcoin_cli.sh -------------------------------------------------------------------------------- /src/bitcoin/menu_bitcoin_other.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/bitcoin/menu_bitcoin_other.sh -------------------------------------------------------------------------------- /src/bitcoin/menu_bitcoin_tor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/bitcoin/menu_bitcoin_tor.sh -------------------------------------------------------------------------------- /src/bitcoin/misc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/bitcoin/misc.sh -------------------------------------------------------------------------------- /src/bitcoin/modify_prune.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/bitcoin/modify_prune.sh -------------------------------------------------------------------------------- /src/bitcoin/offer_swap_to_external.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/bitcoin/offer_swap_to_external.sh -------------------------------------------------------------------------------- /src/bitcoin/p4_install_bitcoin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/bitcoin/p4_install_bitcoin.sh -------------------------------------------------------------------------------- /src/bitcoin/password_changer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/bitcoin/password_changer.sh -------------------------------------------------------------------------------- /src/bitcoin/prune.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/bitcoin/prune.sh -------------------------------------------------------------------------------- /src/bitcoin/pruning_functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/bitcoin/pruning_functions.sh -------------------------------------------------------------------------------- /src/bitcoin/reindex_bitcoin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/bitcoin/reindex_bitcoin.sh -------------------------------------------------------------------------------- /src/bitcoin/rpcbind_adjust.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/bitcoin/rpcbind_adjust.sh -------------------------------------------------------------------------------- /src/bitcoin/set_rpc_authentication.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/bitcoin/set_rpc_authentication.sh -------------------------------------------------------------------------------- /src/bitcoin/start_stop_bitcoin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/bitcoin/start_stop_bitcoin.sh -------------------------------------------------------------------------------- /src/bitcoin/store_BTC_container_IP.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/bitcoin/store_BTC_container_IP.sh -------------------------------------------------------------------------------- /src/bitcoin/toggle_bitcoin_rpc_tor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/bitcoin/toggle_bitcoin_rpc_tor.sh -------------------------------------------------------------------------------- /src/bitcoin/uninstall_bitcoin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/bitcoin/uninstall_bitcoin.sh -------------------------------------------------------------------------------- /src/bitcoin/update_bitcoin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/bitcoin/update_bitcoin.sh -------------------------------------------------------------------------------- /src/bitcoin/upgrade_to_knots.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/bitcoin/upgrade_to_knots.sh -------------------------------------------------------------------------------- /src/bitcoin/verify_bitcoin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/bitcoin/verify_bitcoin.sh -------------------------------------------------------------------------------- /src/bre/bre_authentication.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/bre/bre_authentication.sh -------------------------------------------------------------------------------- /src/bre/bre_computer_speed.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/bre/bre_computer_speed.sh -------------------------------------------------------------------------------- /src/bre/disable_bre_tor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/bre/disable_bre_tor.sh -------------------------------------------------------------------------------- /src/bre/enable_access.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/bre/enable_access.sh -------------------------------------------------------------------------------- /src/bre/enable_bre_tor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/bre/enable_bre_tor.sh -------------------------------------------------------------------------------- /src/bre/install_btcrpcexplorer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/bre/install_btcrpcexplorer.sh -------------------------------------------------------------------------------- /src/bre/make_bre_service.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/bre/make_bre_service.sh -------------------------------------------------------------------------------- /src/bre/make_btcrpcexplorer_config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/bre/make_btcrpcexplorer_config.sh -------------------------------------------------------------------------------- /src/bre/menu_bre.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/bre/menu_bre.sh -------------------------------------------------------------------------------- /src/bre/pruning_info.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/bre/pruning_info.sh -------------------------------------------------------------------------------- /src/bre/recommend_bre_uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/bre/recommend_bre_uninstall.sh -------------------------------------------------------------------------------- /src/bre/start_stop_bre.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/bre/start_stop_bre.sh -------------------------------------------------------------------------------- /src/bre/uninstall_btcrpcexplorer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/bre/uninstall_btcrpcexplorer.sh -------------------------------------------------------------------------------- /src/bre_docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/bre_docker/Dockerfile -------------------------------------------------------------------------------- /src/bre_docker/bre_docker_IP_get.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/bre_docker/bre_docker_IP_get.sh -------------------------------------------------------------------------------- /src/bre_docker/bre_docker_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/bre_docker/bre_docker_build.sh -------------------------------------------------------------------------------- /src/bre_docker/bre_docker_directories.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/bre_docker/bre_docker_directories.sh -------------------------------------------------------------------------------- /src/bre_docker/bre_docker_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/bre_docker/bre_docker_install.sh -------------------------------------------------------------------------------- /src/bre_docker/bre_docker_intro.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/bre_docker/bre_docker_intro.sh -------------------------------------------------------------------------------- /src/bre_docker/bre_docker_modify_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/bre_docker/bre_docker_modify_env.sh -------------------------------------------------------------------------------- /src/bre_docker/bre_docker_restart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/bre_docker/bre_docker_restart.sh -------------------------------------------------------------------------------- /src/bre_docker/bre_docker_run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/bre_docker/bre_docker_run.sh -------------------------------------------------------------------------------- /src/bre_docker/bre_docker_start_bre.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/bre_docker/bre_docker_start_bre.sh -------------------------------------------------------------------------------- /src/bre_docker/bre_docker_start_stop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/bre_docker/bre_docker_start_stop.sh -------------------------------------------------------------------------------- /src/bre_docker/bre_docker_uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/bre_docker/bre_docker_uninstall.sh -------------------------------------------------------------------------------- /src/bre_docker/bre_warnings.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/bre_docker/bre_warnings.sh -------------------------------------------------------------------------------- /src/btcpay/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/btcpay/Dockerfile -------------------------------------------------------------------------------- /src/btcpay/Dockerfile_Mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/btcpay/Dockerfile_Mac -------------------------------------------------------------------------------- /src/btcpay/btcparmanpay.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/btcpay/btcparmanpay.sh -------------------------------------------------------------------------------- /src/btcpay/btcpay_backup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/btcpay/btcpay_backup.sh -------------------------------------------------------------------------------- /src/btcpay/btcpay_compile_choice.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/btcpay/btcpay_compile_choice.sh -------------------------------------------------------------------------------- /src/btcpay/btcpay_config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/btcpay/btcpay_config.sh -------------------------------------------------------------------------------- /src/btcpay/btcpay_install_preamble.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/btcpay/btcpay_install_preamble.sh -------------------------------------------------------------------------------- /src/btcpay/build_btcpay.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/btcpay/build_btcpay.sh -------------------------------------------------------------------------------- /src/btcpay/choose_btcpay_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/btcpay/choose_btcpay_version.sh -------------------------------------------------------------------------------- /src/btcpay/connect_btcpay_to_lnd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/btcpay/connect_btcpay_to_lnd.sh -------------------------------------------------------------------------------- /src/btcpay/create_account_btcpay.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/btcpay/create_account_btcpay.sh -------------------------------------------------------------------------------- /src/btcpay/enable_tor_btcpay.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/btcpay/enable_tor_btcpay.sh -------------------------------------------------------------------------------- /src/btcpay/info_only/REST_connection.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/btcpay/info_only/REST_connection.txt -------------------------------------------------------------------------------- /src/btcpay/info_only/btcpay_service.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/btcpay/info_only/btcpay_service.txt -------------------------------------------------------------------------------- /src/btcpay/info_only/pg_conf.txt: -------------------------------------------------------------------------------- 1 | /etc/postgresql/13/main/pg_hba.conf 2 | 3 | can edit this. -------------------------------------------------------------------------------- /src/btcpay/info_only/port_forwarding.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/btcpay/info_only/port_forwarding.txt -------------------------------------------------------------------------------- /src/btcpay/initialise_postgres_btcpay.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/btcpay/initialise_postgres_btcpay.sh -------------------------------------------------------------------------------- /src/btcpay/install_btcpay_linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/btcpay/install_btcpay_linux.sh -------------------------------------------------------------------------------- /src/btcpay/install_btcpay_mac.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/btcpay/install_btcpay_mac.sh -------------------------------------------------------------------------------- /src/btcpay/install_btcpay_mac_child.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/btcpay/install_btcpay_mac_child.sh -------------------------------------------------------------------------------- /src/btcpay/make_btc_pay_directories.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/btcpay/make_btc_pay_directories.sh -------------------------------------------------------------------------------- /src/btcpay/make_btcpay_startup_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/btcpay/make_btcpay_startup_script.sh -------------------------------------------------------------------------------- /src/btcpay/menu_btcpay.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/btcpay/menu_btcpay.sh -------------------------------------------------------------------------------- /src/btcpay/nbxplorer_config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/btcpay/nbxplorer_config.sh -------------------------------------------------------------------------------- /src/btcpay/restore_btcpay.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/btcpay/restore_btcpay.sh -------------------------------------------------------------------------------- /src/btcpay/run_btcpay_docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/btcpay/run_btcpay_docker.sh -------------------------------------------------------------------------------- /src/btcpay/start_btcpay_indocker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/btcpay/start_btcpay_indocker.sh -------------------------------------------------------------------------------- /src/btcpay/start_nbxplorer_indocker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/btcpay/start_nbxplorer_indocker.sh -------------------------------------------------------------------------------- /src/btcpay/start_stop_btcpay.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/btcpay/start_stop_btcpay.sh -------------------------------------------------------------------------------- /src/btcpay/uninstall_btcpay.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/btcpay/uninstall_btcpay.sh -------------------------------------------------------------------------------- /src/btcpay/user_pass_check_exists.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/btcpay/user_pass_check_exists.sh -------------------------------------------------------------------------------- /src/btcrecover/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/btcrecover/Dockerfile -------------------------------------------------------------------------------- /src/btcrecover/fix_openssl_ripemd160.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/btcrecover/fix_openssl_ripemd160.sh -------------------------------------------------------------------------------- /src/btcrecover/install_btcrecover.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/btcrecover/install_btcrecover.sh -------------------------------------------------------------------------------- /src/btcrecover/menu_btcrecover.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/btcrecover/menu_btcrecover.sh -------------------------------------------------------------------------------- /src/btcrecover/uninstall_btcrecover.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/btcrecover/uninstall_btcrecover.sh -------------------------------------------------------------------------------- /src/coldcard/cc_firmware_instructions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/coldcard/cc_firmware_instructions.sh -------------------------------------------------------------------------------- /src/coldcard/ccpubkey.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/coldcard/ccpubkey.asc -------------------------------------------------------------------------------- /src/coldcard/coldcard_firmware.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/coldcard/coldcard_firmware.sh -------------------------------------------------------------------------------- /src/coldcard/manual_cc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/coldcard/manual_cc.sh -------------------------------------------------------------------------------- /src/coldcard/signatures.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/coldcard/signatures.txt -------------------------------------------------------------------------------- /src/communication/autossh_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/communication/autossh_setup.sh -------------------------------------------------------------------------------- /src/communication/check_SSH.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/communication/check_SSH.sh -------------------------------------------------------------------------------- /src/communication/make_parmanode_ca.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/communication/make_parmanode_ca.sh -------------------------------------------------------------------------------- /src/communication/make_parmanode_cert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/communication/make_parmanode_cert.sh -------------------------------------------------------------------------------- /src/communication/make_socat_service.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/communication/make_socat_service.sh -------------------------------------------------------------------------------- /src/communication/make_ssh_keys.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/communication/make_ssh_keys.sh -------------------------------------------------------------------------------- /src/communication/purge_dropbear.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/communication/purge_dropbear.sh -------------------------------------------------------------------------------- /src/communication/restart_sshd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/communication/restart_sshd.sh -------------------------------------------------------------------------------- /src/communication/sign_parmanode_cert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/communication/sign_parmanode_cert.sh -------------------------------------------------------------------------------- /src/communication/start_stop_socat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/communication/start_stop_socat.sh -------------------------------------------------------------------------------- /src/config/app_versions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/config/app_versions.sh -------------------------------------------------------------------------------- /src/config/build_config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/config/build_config.sh -------------------------------------------------------------------------------- /src/config/get_versions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/config/get_versions.sh -------------------------------------------------------------------------------- /src/config/hide_messages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/config/hide_messages.sh -------------------------------------------------------------------------------- /src/config/installed_config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/config/installed_config.sh -------------------------------------------------------------------------------- /src/config/log.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/config/log.sh -------------------------------------------------------------------------------- /src/config/make_mount_check_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/config/make_mount_check_script.sh -------------------------------------------------------------------------------- /src/config/parmanode_conf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/config/parmanode_conf.sh -------------------------------------------------------------------------------- /src/config/parmanode_variables.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/config/parmanode_variables.sh -------------------------------------------------------------------------------- /src/config/whats_running.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/config/whats_running.sh -------------------------------------------------------------------------------- /src/datum/get_datum.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/datum/get_datum.sh -------------------------------------------------------------------------------- /src/debug/d1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/debug/d1.sh -------------------------------------------------------------------------------- /src/debug/debug.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/debug/debug.sh -------------------------------------------------------------------------------- /src/debug/nogsedtest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/debug/nogsedtest.sh -------------------------------------------------------------------------------- /src/debug/pause.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/debug/pause.sh -------------------------------------------------------------------------------- /src/deis/deis.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/deis/deis.svg -------------------------------------------------------------------------------- /src/deis/deis_images/deis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/deis/deis_images/deis.png -------------------------------------------------------------------------------- /src/deis/icons/deis.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/deis/icons/deis.ico -------------------------------------------------------------------------------- /src/deis/icons/deis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/deis/icons/deis.png -------------------------------------------------------------------------------- /src/deis/share/pixmaps/bitcoin.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/deis/share/pixmaps/bitcoin.xpm -------------------------------------------------------------------------------- /src/deis/share/pixmaps/bitcoin128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/deis/share/pixmaps/bitcoin128.png -------------------------------------------------------------------------------- /src/deis/share/pixmaps/bitcoin128.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/deis/share/pixmaps/bitcoin128.xpm -------------------------------------------------------------------------------- /src/deis/share/pixmaps/bitcoin16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/deis/share/pixmaps/bitcoin16.png -------------------------------------------------------------------------------- /src/deis/share/pixmaps/bitcoin16.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/deis/share/pixmaps/bitcoin16.xpm -------------------------------------------------------------------------------- /src/deis/share/pixmaps/bitcoin256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/deis/share/pixmaps/bitcoin256.png -------------------------------------------------------------------------------- /src/deis/share/pixmaps/bitcoin256.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/deis/share/pixmaps/bitcoin256.xpm -------------------------------------------------------------------------------- /src/deis/share/pixmaps/bitcoin32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/deis/share/pixmaps/bitcoin32.png -------------------------------------------------------------------------------- /src/deis/share/pixmaps/bitcoin32.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/deis/share/pixmaps/bitcoin32.xpm -------------------------------------------------------------------------------- /src/deis/share/pixmaps/bitcoin64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/deis/share/pixmaps/bitcoin64.png -------------------------------------------------------------------------------- /src/deis/share/pixmaps/bitcoin64.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/deis/share/pixmaps/bitcoin64.xpm -------------------------------------------------------------------------------- /src/deis/share/pixmaps/nsis-header.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/deis/share/pixmaps/nsis-header.bmp -------------------------------------------------------------------------------- /src/deis/share/pixmaps/nsis-wizard.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/deis/share/pixmaps/nsis-wizard.bmp -------------------------------------------------------------------------------- /src/dependencies/bash_version_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/dependencies/bash_version_test.sh -------------------------------------------------------------------------------- /src/dependencies/curl_check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/dependencies/curl_check.sh -------------------------------------------------------------------------------- /src/dependencies/gpg_check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/dependencies/gpg_check.sh -------------------------------------------------------------------------------- /src/dependencies/sudo_check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/dependencies/sudo_check.sh -------------------------------------------------------------------------------- /src/docker/add_docker_group.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/docker/add_docker_group.sh -------------------------------------------------------------------------------- /src/docker/colima.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/docker/colima.sh -------------------------------------------------------------------------------- /src/docker/docker_running.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/docker/docker_running.sh -------------------------------------------------------------------------------- /src/docker/docker_troubleshooting.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/docker/docker_troubleshooting.sh -------------------------------------------------------------------------------- /src/docker/install_docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/docker/install_docker.sh -------------------------------------------------------------------------------- /src/docker/install_docker_linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/docker/install_docker_linux.sh -------------------------------------------------------------------------------- /src/docker/install_docker_mac.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/docker/install_docker_mac.sh -------------------------------------------------------------------------------- /src/docker/menu_docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/docker/menu_docker.sh -------------------------------------------------------------------------------- /src/docker/start_docker_mac.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/docker/start_docker_mac.sh -------------------------------------------------------------------------------- /src/docker/uninstall_docker_linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/docker/uninstall_docker_linux.sh -------------------------------------------------------------------------------- /src/docker/uninstall_docker_mac.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/docker/uninstall_docker_mac.sh -------------------------------------------------------------------------------- /src/drive_functions/UIDGID.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/drive_functions/UIDGID.sh -------------------------------------------------------------------------------- /src/drive_functions/add_drive.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/drive_functions/add_drive.sh -------------------------------------------------------------------------------- /src/drive_functions/compatibility.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/drive_functions/compatibility.sh -------------------------------------------------------------------------------- /src/drive_functions/dd_wipe_drive.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/drive_functions/dd_wipe_drive.sh -------------------------------------------------------------------------------- /src/drive_functions/detect_drive.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/drive_functions/detect_drive.sh -------------------------------------------------------------------------------- /src/drive_functions/detect_microSD.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/drive_functions/detect_microSD.sh -------------------------------------------------------------------------------- /src/drive_functions/format_ext_drive.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/drive_functions/format_ext_drive.sh -------------------------------------------------------------------------------- /src/drive_functions/format_warnings.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/drive_functions/format_warnings.sh -------------------------------------------------------------------------------- /src/drive_functions/get_UUID.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/drive_functions/get_UUID.sh -------------------------------------------------------------------------------- /src/drive_functions/info_add_drive.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/drive_functions/info_add_drive.sh -------------------------------------------------------------------------------- /src/drive_functions/mount_drive.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/drive_functions/mount_drive.sh -------------------------------------------------------------------------------- /src/drive_functions/mynode_import.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/drive_functions/mynode_import.sh -------------------------------------------------------------------------------- /src/drive_functions/mynode_revert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/drive_functions/mynode_revert.sh -------------------------------------------------------------------------------- /src/drive_functions/partition_drive.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/drive_functions/partition_drive.sh -------------------------------------------------------------------------------- /src/drive_functions/rm_after_before.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/drive_functions/rm_after_before.sh -------------------------------------------------------------------------------- /src/drive_functions/select_drive_ID.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/drive_functions/select_drive_ID.sh -------------------------------------------------------------------------------- /src/drive_functions/umbrel_import.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/drive_functions/umbrel_import.sh -------------------------------------------------------------------------------- /src/drive_functions/umbrel_revert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/drive_functions/umbrel_revert.sh -------------------------------------------------------------------------------- /src/drive_functions/unmount.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/drive_functions/unmount.sh -------------------------------------------------------------------------------- /src/drive_functions/write_to_fstab.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/drive_functions/write_to_fstab.sh -------------------------------------------------------------------------------- /src/education/6rn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/education/6rn.txt -------------------------------------------------------------------------------- /src/education/MIT_lectures.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/education/MIT_lectures.sh -------------------------------------------------------------------------------- /src/education/MIT_lectures.torrent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/education/MIT_lectures.torrent -------------------------------------------------------------------------------- /src/education/connect_wallet_info.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/education/connect_wallet_info.sh -------------------------------------------------------------------------------- /src/education/cool_stuff.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/education/cool_stuff.sh -------------------------------------------------------------------------------- /src/education/joinus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/education/joinus.txt -------------------------------------------------------------------------------- /src/education/less_function.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/education/less_function.sh -------------------------------------------------------------------------------- /src/education/lnd_wallet_info.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/education/lnd_wallet_info.sh -------------------------------------------------------------------------------- /src/education/mentorship.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/education/mentorship.sh -------------------------------------------------------------------------------- /src/education/menu_education.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/education/menu_education.sh -------------------------------------------------------------------------------- /src/electrs/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/electrs/Dockerfile -------------------------------------------------------------------------------- /src/electrs/Dockerfile_torrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/electrs/Dockerfile_torrc -------------------------------------------------------------------------------- /src/electrs/Dockerfile_torsocks.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/electrs/backup_electrs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/electrs/backup_electrs.sh -------------------------------------------------------------------------------- /src/electrs/compile_electrs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/electrs/compile_electrs.sh -------------------------------------------------------------------------------- /src/electrs/docker_run_electrs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/electrs/docker_run_electrs.sh -------------------------------------------------------------------------------- /src/electrs/download_electrs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/electrs/download_electrs.sh -------------------------------------------------------------------------------- /src/electrs/electrs_backup_exists.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/electrs/electrs_backup_exists.sh -------------------------------------------------------------------------------- /src/electrs/electrs_better_4pi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/electrs/electrs_better_4pi.sh -------------------------------------------------------------------------------- /src/electrs/electrs_bitcoinIP_change.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/electrs/electrs_bitcoinIP_change.sh -------------------------------------------------------------------------------- /src/electrs/electrs_edit_user_pass.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/electrs/electrs_edit_user_pass.sh -------------------------------------------------------------------------------- /src/electrs/electrs_to_remote.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/electrs/electrs_to_remote.sh -------------------------------------------------------------------------------- /src/electrs/electrs_tor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/electrs/electrs_tor.sh -------------------------------------------------------------------------------- /src/electrs/electrs_tor_remove.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/electrs/electrs_tor_remove.sh -------------------------------------------------------------------------------- /src/electrs/info_electrs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/electrs/info_electrs.sh -------------------------------------------------------------------------------- /src/electrs/install_cargo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/electrs/install_cargo.sh -------------------------------------------------------------------------------- /src/electrs/install_electrs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/electrs/install_electrs.sh -------------------------------------------------------------------------------- /src/electrs/install_electrs_docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/electrs/install_electrs_docker.sh -------------------------------------------------------------------------------- /src/electrs/make_electrs_config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/electrs/make_electrs_config.sh -------------------------------------------------------------------------------- /src/electrs/make_electrs_service.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/electrs/make_electrs_service.sh -------------------------------------------------------------------------------- /src/electrs/menu_electrs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/electrs/menu_electrs.sh -------------------------------------------------------------------------------- /src/electrs/preamble_install_electrs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/electrs/preamble_install_electrs.sh -------------------------------------------------------------------------------- /src/electrs/prepare_drive_electrs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/electrs/prepare_drive_electrs.sh -------------------------------------------------------------------------------- /src/electrs/remove_electrs_db.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/electrs/remove_electrs_db.sh -------------------------------------------------------------------------------- /src/electrs/restore_electrs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/electrs/restore_electrs.sh -------------------------------------------------------------------------------- /src/electrs/start_stop_electrs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/electrs/start_stop_electrs.sh -------------------------------------------------------------------------------- /src/electrs/uninstall_electrs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/electrs/uninstall_electrs.sh -------------------------------------------------------------------------------- /src/electrs/uninstall_electrs_docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/electrs/uninstall_electrs_docker.sh -------------------------------------------------------------------------------- /src/electrum/choose_electrum_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/electrum/choose_electrum_version.sh -------------------------------------------------------------------------------- /src/electrum/clear_dot_electrum.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/electrum/clear_dot_electrum.sh -------------------------------------------------------------------------------- /src/electrum/disable_electrum_tor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/electrum/disable_electrum_tor.sh -------------------------------------------------------------------------------- /src/electrum/download_electrum.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/electrum/download_electrum.sh -------------------------------------------------------------------------------- /src/electrum/electrum_dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/electrum/electrum_dependencies.sh -------------------------------------------------------------------------------- /src/electrum/enable_electrum_tor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/electrum/enable_electrum_tor.sh -------------------------------------------------------------------------------- /src/electrum/extract_electrum.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/electrum/extract_electrum.sh -------------------------------------------------------------------------------- /src/electrum/install_electrum.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/electrum/install_electrum.sh -------------------------------------------------------------------------------- /src/electrum/make_electrum_config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/electrum/make_electrum_config.sh -------------------------------------------------------------------------------- /src/electrum/menu_electrum.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/electrum/menu_electrum.sh -------------------------------------------------------------------------------- /src/electrum/modify_electrum_config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/electrum/modify_electrum_config.sh -------------------------------------------------------------------------------- /src/electrum/parmans_electrum_guide.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/electrum/parmans_electrum_guide.sh -------------------------------------------------------------------------------- /src/electrum/run_electrum.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/electrum/run_electrum.sh -------------------------------------------------------------------------------- /src/electrum/set_permission_electrum.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/electrum/set_permission_electrum.sh -------------------------------------------------------------------------------- /src/electrum/uninstall_electrum.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/electrum/uninstall_electrum.sh -------------------------------------------------------------------------------- /src/electrum/verify_electrum.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/electrum/verify_electrum.sh -------------------------------------------------------------------------------- /src/electrumx/download_electrumx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/electrumx/download_electrumx.sh -------------------------------------------------------------------------------- /src/electrumx/electrumx_banner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/electrumx/electrumx_banner.sh -------------------------------------------------------------------------------- /src/electrumx/electrumx_dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/electrumx/electrumx_dependencies.sh -------------------------------------------------------------------------------- /src/electrumx/electrumx_tor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/electrumx/electrumx_tor.sh -------------------------------------------------------------------------------- /src/electrumx/electrumx_tor_remove.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/electrumx/electrumx_tor_remove.sh -------------------------------------------------------------------------------- /src/electrumx/install_electrumx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/electrumx/install_electrumx.sh -------------------------------------------------------------------------------- /src/electrumx/make_electrumx_conf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/electrumx/make_electrumx_conf.sh -------------------------------------------------------------------------------- /src/electrumx/make_electrumx_service.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/electrumx/make_electrumx_service.sh -------------------------------------------------------------------------------- /src/electrumx/menu_electrumx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/electrumx/menu_electrumx.sh -------------------------------------------------------------------------------- /src/electrumx/preamble.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/electrumx/preamble.sh -------------------------------------------------------------------------------- /src/electrumx/start_stop_electrumx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/electrumx/start_stop_electrumx.sh -------------------------------------------------------------------------------- /src/electrumx/uninstall_electrumx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/electrumx/uninstall_electrumx.sh -------------------------------------------------------------------------------- /src/extras/get_books.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/extras/get_books.sh -------------------------------------------------------------------------------- /src/extras/install_htop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/extras/install_htop.sh -------------------------------------------------------------------------------- /src/fulcrum/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/fulcrum/Dockerfile -------------------------------------------------------------------------------- /src/fulcrum/build_fulcrum_docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/fulcrum/build_fulcrum_docker.sh -------------------------------------------------------------------------------- /src/fulcrum/database_corrupted.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/fulcrum/database_corrupted.sh -------------------------------------------------------------------------------- /src/fulcrum/docker_stop_fulcrum.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/fulcrum/docker_stop_fulcrum.sh -------------------------------------------------------------------------------- /src/fulcrum/download_fulcrum.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/fulcrum/download_fulcrum.sh -------------------------------------------------------------------------------- /src/fulcrum/extract_fulcrum_tar.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/fulcrum/extract_fulcrum_tar.sh -------------------------------------------------------------------------------- /src/fulcrum/fulcrum_docker_IP_get.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/fulcrum/fulcrum_docker_IP_get.sh -------------------------------------------------------------------------------- /src/fulcrum/fulcrum_install_files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/fulcrum/fulcrum_install_files.sh -------------------------------------------------------------------------------- /src/fulcrum/fulcrum_make_directories.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/fulcrum/fulcrum_make_directories.sh -------------------------------------------------------------------------------- /src/fulcrum/fulcrum_tor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/fulcrum/fulcrum_tor.sh -------------------------------------------------------------------------------- /src/fulcrum/fulcrum_tor_remove.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/fulcrum/fulcrum_tor_remove.sh -------------------------------------------------------------------------------- /src/fulcrum/install_fulcrum.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/fulcrum/install_fulcrum.sh -------------------------------------------------------------------------------- /src/fulcrum/make_fulcrum_config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/fulcrum/make_fulcrum_config.sh -------------------------------------------------------------------------------- /src/fulcrum/menu_fulcrum.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/fulcrum/menu_fulcrum.sh -------------------------------------------------------------------------------- /src/fulcrum/run_fulcrum_docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/fulcrum/run_fulcrum_docker.sh -------------------------------------------------------------------------------- /src/fulcrum/start_stop_fulcrum.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/fulcrum/start_stop_fulcrum.sh -------------------------------------------------------------------------------- /src/fulcrum/uninstall_fulcrum.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/fulcrum/uninstall_fulcrum.sh -------------------------------------------------------------------------------- /src/fulcrum/verify_fulcrum.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/fulcrum/verify_fulcrum.sh -------------------------------------------------------------------------------- /src/graphics/bin1_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/graphics/bin1_empty.png -------------------------------------------------------------------------------- /src/graphics/bin1_eth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/graphics/bin1_eth.png -------------------------------------------------------------------------------- /src/graphics/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/graphics/favicon.ico -------------------------------------------------------------------------------- /src/graphics/pn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/graphics/pn.png -------------------------------------------------------------------------------- /src/graphics/pn_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/graphics/pn_icon.png -------------------------------------------------------------------------------- /src/graphics/ssh_enable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/graphics/ssh_enable.png -------------------------------------------------------------------------------- /src/green/install_green.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/green/install_green.sh -------------------------------------------------------------------------------- /src/green/menu_green.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/green/menu_green.sh -------------------------------------------------------------------------------- /src/green/uninstall_green.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/green/uninstall_green.sh -------------------------------------------------------------------------------- /src/green/verify_green.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/green/verify_green.sh -------------------------------------------------------------------------------- /src/i2p/install_i2p.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/i2p/install_i2p.sh -------------------------------------------------------------------------------- /src/i2p/menu_i2p.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/i2p/menu_i2p.sh -------------------------------------------------------------------------------- /src/i2p/start_stop_i2p.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/i2p/start_stop_i2p.sh -------------------------------------------------------------------------------- /src/i2p/uninstall_i2p.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/i2p/uninstall_i2p.sh -------------------------------------------------------------------------------- /src/joinmarket/Install_joinmarket.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/joinmarket/Install_joinmarket.sh -------------------------------------------------------------------------------- /src/joinmarket/check_socat_working.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/joinmarket/check_socat_working.sh -------------------------------------------------------------------------------- /src/joinmarket/configure_yg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/joinmarket/configure_yg.sh -------------------------------------------------------------------------------- /src/joinmarket/enable_joinmarket_tor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/joinmarket/enable_joinmarket_tor.sh -------------------------------------------------------------------------------- /src/joinmarket/jm_log_file_manager.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/joinmarket/jm_log_file_manager.sh -------------------------------------------------------------------------------- /src/joinmarket/jmvenv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/joinmarket/jmvenv.sh -------------------------------------------------------------------------------- /src/joinmarket/menu_joinmarket.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/joinmarket/menu_joinmarket.sh -------------------------------------------------------------------------------- /src/joinmarket/menu_joinmarket2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/joinmarket/menu_joinmarket2.sh -------------------------------------------------------------------------------- /src/joinmarket/menu_joinmarketwallet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/joinmarket/menu_joinmarketwallet.sh -------------------------------------------------------------------------------- /src/joinmarket/menu_yield_generator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/joinmarket/menu_yield_generator.sh -------------------------------------------------------------------------------- /src/joinmarket/orderbook_access_info.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/joinmarket/orderbook_access_info.sh -------------------------------------------------------------------------------- /src/joinmarket/orderbook_jm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/joinmarket/orderbook_jm.sh -------------------------------------------------------------------------------- /src/joinmarket/parmajoin_info.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/joinmarket/parmajoin_info.sh -------------------------------------------------------------------------------- /src/joinmarket/public_orderbook.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/joinmarket/public_orderbook.sh -------------------------------------------------------------------------------- /src/joinmarket/spending_info_jm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/joinmarket/spending_info_jm.sh -------------------------------------------------------------------------------- /src/joinmarket/uninstall_joinmarket.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/joinmarket/uninstall_joinmarket.sh -------------------------------------------------------------------------------- /src/joinmarket/wallet_functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/joinmarket/wallet_functions.sh -------------------------------------------------------------------------------- /src/joinmarket/yield_generator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/joinmarket/yield_generator.sh -------------------------------------------------------------------------------- /src/ledger/install_ledger.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ledger/install_ledger.sh -------------------------------------------------------------------------------- /src/ledger/ledgerlive.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ledger/ledgerlive.pem -------------------------------------------------------------------------------- /src/ledger/menu_ledger.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ledger/menu_ledger.sh -------------------------------------------------------------------------------- /src/ledger/run_ledger.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ledger/run_ledger.sh -------------------------------------------------------------------------------- /src/ledger/uninstall_ledger.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ledger/uninstall_ledger.sh -------------------------------------------------------------------------------- /src/ledger/verify_ledger.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ledger/verify_ledger.sh -------------------------------------------------------------------------------- /src/ledger/warning_ledger.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/ledger/warning_ledger.sh -------------------------------------------------------------------------------- /src/litd/bitcoin_choice_with_litd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/litd/bitcoin_choice_with_litd.sh -------------------------------------------------------------------------------- /src/litd/download_litd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/litd/download_litd.sh -------------------------------------------------------------------------------- /src/litd/enable_tor_littermianl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/litd/enable_tor_littermianl.sh -------------------------------------------------------------------------------- /src/litd/install_litd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/litd/install_litd.sh -------------------------------------------------------------------------------- /src/litd/make_lit_conf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/litd/make_lit_conf.sh -------------------------------------------------------------------------------- /src/litd/make_litd_directoreis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/litd/make_litd_directoreis.sh -------------------------------------------------------------------------------- /src/litd/make_litd_service.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/litd/make_litd_service.sh -------------------------------------------------------------------------------- /src/litd/make_nginx_litd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/litd/make_nginx_litd.sh -------------------------------------------------------------------------------- /src/litd/menu_litterminal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/litd/menu_litterminal.sh -------------------------------------------------------------------------------- /src/litd/set_litd_password.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/litd/set_litd_password.sh -------------------------------------------------------------------------------- /src/litd/start_stop_litd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/litd/start_stop_litd.sh -------------------------------------------------------------------------------- /src/litd/uninstall_litd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/litd/uninstall_litd.sh -------------------------------------------------------------------------------- /src/litd/unpack_litd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/litd/unpack_litd.sh -------------------------------------------------------------------------------- /src/litd/verify_litd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/litd/verify_litd.sh -------------------------------------------------------------------------------- /src/lnbits/configure_yourself.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/lnbits/configure_yourself.sh -------------------------------------------------------------------------------- /src/lnbits/install_lnbits.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/lnbits/install_lnbits.sh -------------------------------------------------------------------------------- /src/lnbits/menu_LNbits.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/lnbits/menu_LNbits.sh -------------------------------------------------------------------------------- /src/lnbits/start_stop_lnbits.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/lnbits/start_stop_lnbits.sh -------------------------------------------------------------------------------- /src/lnbits/uninstall_lnbits.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/lnbits/uninstall_lnbits.sh -------------------------------------------------------------------------------- /src/lnd/bitcoin_choice_with_lnd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/lnd/bitcoin_choice_with_lnd.sh -------------------------------------------------------------------------------- /src/lnd/change_lnd_port.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/lnd/change_lnd_port.sh -------------------------------------------------------------------------------- /src/lnd/create_wallet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/lnd/create_wallet.sh -------------------------------------------------------------------------------- /src/lnd/delete_wallet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/lnd/delete_wallet.sh -------------------------------------------------------------------------------- /src/lnd/download_lnd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/lnd/download_lnd.sh -------------------------------------------------------------------------------- /src/lnd/expose_LND.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/lnd/expose_LND.sh -------------------------------------------------------------------------------- /src/lnd/fix_BTC_addr_btccombo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/lnd/fix_BTC_addr_btccombo.sh -------------------------------------------------------------------------------- /src/lnd/get_extIP.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/lnd/get_extIP.sh -------------------------------------------------------------------------------- /src/lnd/install_lnd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/lnd/install_lnd.sh -------------------------------------------------------------------------------- /src/lnd/lnd_TOR.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/lnd/lnd_TOR.sh -------------------------------------------------------------------------------- /src/lnd/lnd_info.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/lnd/lnd_info.sh -------------------------------------------------------------------------------- /src/lnd/lnd_macaroons.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/lnd/lnd_macaroons.sh -------------------------------------------------------------------------------- /src/lnd/lnd_password_change.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/lnd/lnd_password_change.sh -------------------------------------------------------------------------------- /src/lnd/lnd_wallet_unlock_password.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/lnd/lnd_wallet_unlock_password.sh -------------------------------------------------------------------------------- /src/lnd/make_lnd_conf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/lnd/make_lnd_conf.sh -------------------------------------------------------------------------------- /src/lnd/make_lnd_directories.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/lnd/make_lnd_directories.sh -------------------------------------------------------------------------------- /src/lnd/make_lnd_service.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/lnd/make_lnd_service.sh -------------------------------------------------------------------------------- /src/lnd/make_lnd_service_tor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/lnd/make_lnd_service_tor.sh -------------------------------------------------------------------------------- /src/lnd/menu_lnd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/lnd/menu_lnd.sh -------------------------------------------------------------------------------- /src/lnd/menu_lnd_more.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/lnd/menu_lnd_more.sh -------------------------------------------------------------------------------- /src/lnd/menu_lnd_wallet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/lnd/menu_lnd_wallet.sh -------------------------------------------------------------------------------- /src/lnd/roasbeef.pgp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/lnd/roasbeef.pgp -------------------------------------------------------------------------------- /src/lnd/run_lnd(info).text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/lnd/run_lnd(info).text -------------------------------------------------------------------------------- /src/lnd/scb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/lnd/scb.sh -------------------------------------------------------------------------------- /src/lnd/set_lnd_alias.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/lnd/set_lnd_alias.sh -------------------------------------------------------------------------------- /src/lnd/set_lnd_port.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/lnd/set_lnd_port.sh -------------------------------------------------------------------------------- /src/lnd/start_stop_lnd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/lnd/start_stop_lnd.sh -------------------------------------------------------------------------------- /src/lnd/store_LND_container_IP.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/lnd/store_LND_container_IP.sh -------------------------------------------------------------------------------- /src/lnd/uninstall_lnd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/lnd/uninstall_lnd.sh -------------------------------------------------------------------------------- /src/lnd/unpack_lnd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/lnd/unpack_lnd.sh -------------------------------------------------------------------------------- /src/lnd/update_lnd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/lnd/update_lnd.sh -------------------------------------------------------------------------------- /src/lnd/verify_lnd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/lnd/verify_lnd.sh -------------------------------------------------------------------------------- /src/lnd/watchtower.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/lnd/watchtower.sh -------------------------------------------------------------------------------- /src/lnd_docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/lnd_docker/Dockerfile -------------------------------------------------------------------------------- /src/lnd_docker/build_lnd_dockerfile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/lnd_docker/build_lnd_dockerfile.sh -------------------------------------------------------------------------------- /src/lnd_docker/install_lnd_docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/lnd_docker/install_lnd_docker.sh -------------------------------------------------------------------------------- /src/lnd_docker/lnd_docker_run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/lnd_docker/lnd_docker_run.sh -------------------------------------------------------------------------------- /src/lnd_docker/lnd_docker_start_stop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/lnd_docker/lnd_docker_start_stop.sh -------------------------------------------------------------------------------- /src/lnd_docker/modify_lnd_dockerfile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/lnd_docker/modify_lnd_dockerfile.sh -------------------------------------------------------------------------------- /src/lnd_docker/uninstall_lnd_docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/lnd_docker/uninstall_lnd_docker.sh -------------------------------------------------------------------------------- /src/mempool/change_mempool_backend.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/mempool/change_mempool_backend.sh -------------------------------------------------------------------------------- /src/mempool/enable_mempool_tor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/mempool/enable_mempool_tor.sh -------------------------------------------------------------------------------- /src/mempool/install_mempool.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/mempool/install_mempool.sh -------------------------------------------------------------------------------- /src/mempool/menu_mempool.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/mempool/menu_mempool.sh -------------------------------------------------------------------------------- /src/mempool/start_stop_mempool.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/mempool/start_stop_mempool.sh -------------------------------------------------------------------------------- /src/mempool/uninstall_mempool.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/mempool/uninstall_mempool.sh -------------------------------------------------------------------------------- /src/misc/capslock.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/misc/capslock.sh -------------------------------------------------------------------------------- /src/misc/clean_exit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/misc/clean_exit.sh -------------------------------------------------------------------------------- /src/misc/pn_tmux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/misc/pn_tmux.sh -------------------------------------------------------------------------------- /src/misc/rp_count.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/misc/rp_count.sh -------------------------------------------------------------------------------- /src/misc/set_github_config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/misc/set_github_config.sh -------------------------------------------------------------------------------- /src/misc/test_standard_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/misc/test_standard_install.sh -------------------------------------------------------------------------------- /src/misc/udev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/misc/udev.sh -------------------------------------------------------------------------------- /src/misc/udev/20-hw1.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/misc/udev/20-hw1.rules -------------------------------------------------------------------------------- /src/misc/udev/51-coinkite.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/misc/udev/51-coinkite.rules -------------------------------------------------------------------------------- /src/misc/udev/51-trezor.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/misc/udev/51-trezor.rules -------------------------------------------------------------------------------- /src/misc/udev/51-usb-keepkey.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/misc/udev/51-usb-keepkey.rules -------------------------------------------------------------------------------- /src/misc/udev/53-hid-bitbox02.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/misc/udev/53-hid-bitbox02.rules -------------------------------------------------------------------------------- /src/misc/udev/54-hid-bitbox02.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/misc/udev/54-hid-bitbox02.rules -------------------------------------------------------------------------------- /src/misc/udev/55-usb-jade.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/misc/udev/55-usb-jade.rules -------------------------------------------------------------------------------- /src/nginx/install_nginx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/nginx/install_nginx.sh -------------------------------------------------------------------------------- /src/nginx/lnd_nginx_docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/nginx/lnd_nginx_docker.sh -------------------------------------------------------------------------------- /src/nginx/make_router_nginx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/nginx/make_router_nginx.sh -------------------------------------------------------------------------------- /src/nginx/menu_nginx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/nginx/menu_nginx.sh -------------------------------------------------------------------------------- /src/nginx/nginx_clash.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/nginx/nginx_clash.sh -------------------------------------------------------------------------------- /src/nginx/nginx_public_pool_ui.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/nginx/nginx_public_pool_ui.sh -------------------------------------------------------------------------------- /src/nginx/nginx_stream.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/nginx/nginx_stream.sh -------------------------------------------------------------------------------- /src/nginx/stream.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/nginx/stream.conf -------------------------------------------------------------------------------- /src/nginx/stream_lnd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/nginx/stream_lnd.conf -------------------------------------------------------------------------------- /src/nginx/uninstall_nginx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/nginx/uninstall_nginx.sh -------------------------------------------------------------------------------- /src/nginx/uninstall_nginx_warning.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/nginx/uninstall_nginx_warning.sh -------------------------------------------------------------------------------- /src/nodejs/check_nodejs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/nodejs/check_nodejs.sh -------------------------------------------------------------------------------- /src/nodejs/get_nodejs_and_npm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/nodejs/get_nodejs_and_npm.sh -------------------------------------------------------------------------------- /src/nodejs/install_nodejs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/nodejs/install_nodejs.sh -------------------------------------------------------------------------------- /src/nodejs/update_npm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/nodejs/update_npm.sh -------------------------------------------------------------------------------- /src/nostr/add_custom_drive.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/nostr/add_custom_drive.sh -------------------------------------------------------------------------------- /src/nostr/check_ready_for_ssl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/nostr/check_ready_for_ssl.sh -------------------------------------------------------------------------------- /src/nostr/install_nostrrelay.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/nostr/install_nostrrelay.sh -------------------------------------------------------------------------------- /src/nostr/menu_nostr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/nostr/menu_nostr.sh -------------------------------------------------------------------------------- /src/nostr/nostr_ssl_on.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/nostr/nostr_ssl_on.sh -------------------------------------------------------------------------------- /src/nostr/nostr_tor_add_remove.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/nostr/nostr_tor_add_remove.sh -------------------------------------------------------------------------------- /src/nostr/nostr_website_directory.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/nostr/nostr_website_directory.sh -------------------------------------------------------------------------------- /src/nostr/nostrrelay_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/nostr/nostrrelay_build.sh -------------------------------------------------------------------------------- /src/nostr/nostrrelay_edit_config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/nostr/nostrrelay_edit_config.sh -------------------------------------------------------------------------------- /src/nostr/nostrrelay_run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/nostr/nostrrelay_run.sh -------------------------------------------------------------------------------- /src/nostr/nostrrelay_server_name.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/nostr/nostrrelay_server_name.sh -------------------------------------------------------------------------------- /src/nostr/nostrrelay_start_stop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/nostr/nostrrelay_start_stop.sh -------------------------------------------------------------------------------- /src/nostr/uninstall_nostrrelay.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/nostr/uninstall_nostrrelay.sh -------------------------------------------------------------------------------- /src/notes/Stop Spotlitght.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/notes/Stop Spotlitght.png -------------------------------------------------------------------------------- /src/notes/VS Code.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/notes/VS Code.txt -------------------------------------------------------------------------------- /src/notes/bitcoin_curl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/notes/bitcoin_curl.sh -------------------------------------------------------------------------------- /src/notes/docker_sphagetti.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/notes/docker_sphagetti.txt -------------------------------------------------------------------------------- /src/notes/grub_rescue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/notes/grub_rescue.png -------------------------------------------------------------------------------- /src/notes/hidden files.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/notes/hidden files.png -------------------------------------------------------------------------------- /src/notes/host.docker.internal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/notes/host.docker.internal -------------------------------------------------------------------------------- /src/notes/how_to_chroot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/notes/how_to_chroot.txt -------------------------------------------------------------------------------- /src/notes/install_python3_on_mac.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/notes/install_python3_on_mac.txt -------------------------------------------------------------------------------- /src/notes/mac-docker-compose.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/notes/mac-docker-compose.txt -------------------------------------------------------------------------------- /src/notes/makd_swapfile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/notes/makd_swapfile.png -------------------------------------------------------------------------------- /src/notes/partprobe.txt: -------------------------------------------------------------------------------- 1 | sudo partprobe -------------------------------------------------------------------------------- /src/notes/print_line_number.txt: -------------------------------------------------------------------------------- 1 | sed -n 5p $file 2 | 3 | prints line 5 -------------------------------------------------------------------------------- /src/notes/ripemed160.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/notes/ripemed160.txt -------------------------------------------------------------------------------- /src/notes/sed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/notes/sed.txt -------------------------------------------------------------------------------- /src/notes/signing_with_gpg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/notes/signing_with_gpg.txt -------------------------------------------------------------------------------- /src/notes/torsocks_curl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/notes/torsocks_curl -------------------------------------------------------------------------------- /src/notes/umount_fail_mac.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/notes/umount_fail_mac.txt -------------------------------------------------------------------------------- /src/notes/vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/notes/vimrc -------------------------------------------------------------------------------- /src/notes/wpa_supplicant.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/notes/wpa_supplicant.conf -------------------------------------------------------------------------------- /src/parmabox/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/parmabox/Dockerfile -------------------------------------------------------------------------------- /src/parmabox/install_parmabox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/parmabox/install_parmabox.sh -------------------------------------------------------------------------------- /src/parmabox/menu_parmabox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/parmabox/menu_parmabox.sh -------------------------------------------------------------------------------- /src/parmabox/parmabox_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/parmabox/parmabox_build.sh -------------------------------------------------------------------------------- /src/parmabox/parmabox_exec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/parmabox/parmabox_exec.sh -------------------------------------------------------------------------------- /src/parmabox/parmabox_refresh.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/parmabox/parmabox_refresh.sh -------------------------------------------------------------------------------- /src/parmabox/parmanbox_run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/parmabox/parmanbox_run.sh -------------------------------------------------------------------------------- /src/parmabox/uninstall_parmabox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/parmabox/uninstall_parmabox.sh -------------------------------------------------------------------------------- /src/parmanode4/addtoconfig.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/parmanode4/addtoconfig.sh -------------------------------------------------------------------------------- /src/parmanode4/countchar.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/parmanode4/countchar.sh -------------------------------------------------------------------------------- /src/parmanode4/errorlog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/parmanode4/errorlog.sh -------------------------------------------------------------------------------- /src/parmanode4/makedir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/parmanode4/makedir.sh -------------------------------------------------------------------------------- /src/parmanode4/p4progress.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/parmanode4/p4progress.sh -------------------------------------------------------------------------------- /src/parmanode4/p4run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/parmanode4/p4run -------------------------------------------------------------------------------- /src/parmanode4/p4run_maker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/parmanode4/p4run_maker.sh -------------------------------------------------------------------------------- /src/parmanode4/p4socket.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/parmanode4/p4socket.sh -------------------------------------------------------------------------------- /src/parmanode4/parmaview.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/parmanode4/parmaview.txt -------------------------------------------------------------------------------- /src/parmanode4/sudoers_patch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/parmanode4/sudoers_patch.sh -------------------------------------------------------------------------------- /src/parmanode_self/hello.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/parmanode_self/hello.sh -------------------------------------------------------------------------------- /src/parmanode_self/parmanode1_fix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/parmanode_self/parmanode1_fix.sh -------------------------------------------------------------------------------- /src/parmanode_self/parmanode_refresh.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/parmanode_self/parmanode_refresh.sh -------------------------------------------------------------------------------- /src/parmanode_self/runningoverview.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/parmanode_self/runningoverview.sh -------------------------------------------------------------------------------- /src/parmanode_self/update_parmanode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/parmanode_self/update_parmanode.sh -------------------------------------------------------------------------------- /src/patches/add_rp_function.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/patches/add_rp_function.sh -------------------------------------------------------------------------------- /src/patches/apply_patches.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/patches/apply_patches.sh -------------------------------------------------------------------------------- /src/patches/fix_gpg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/patches/fix_gpg.sh -------------------------------------------------------------------------------- /src/patches/invalidate_block.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/patches/invalidate_block.sh -------------------------------------------------------------------------------- /src/patches/next_patch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/patches/next_patch.sh -------------------------------------------------------------------------------- /src/patches/openssh_patch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/patches/openssh_patch.sh -------------------------------------------------------------------------------- /src/patches/parmanode4_upgrade.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/patches/parmanode4_upgrade.sh -------------------------------------------------------------------------------- /src/patches/patch_10.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/patches/patch_10.sh -------------------------------------------------------------------------------- /src/patches/patch_1_2_3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/patches/patch_1_2_3.sh -------------------------------------------------------------------------------- /src/patches/patch_4_5_6.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/patches/patch_4_5_6.sh -------------------------------------------------------------------------------- /src/patches/patch_7.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/patches/patch_7.sh -------------------------------------------------------------------------------- /src/patches/patch_8.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/patches/patch_8.sh -------------------------------------------------------------------------------- /src/patches/patch_9.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/patches/patch_9.sh -------------------------------------------------------------------------------- /src/patches/refresh_parmanode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/patches/refresh_parmanode.sh -------------------------------------------------------------------------------- /src/patches/temp_patch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/patches/temp_patch.sh -------------------------------------------------------------------------------- /src/patches/tmux_patch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/patches/tmux_patch.sh -------------------------------------------------------------------------------- /src/patches/urgent_patch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/patches/urgent_patch.sh -------------------------------------------------------------------------------- /src/patches/urgent_patch_code: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | false 3 | -------------------------------------------------------------------------------- /src/patches/usb_quirk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/patches/usb_quirk.sh -------------------------------------------------------------------------------- /src/phoenix_server/install_phoenix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/phoenix_server/install_phoenix.sh -------------------------------------------------------------------------------- /src/phoenix_server/menu_phoenix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/phoenix_server/menu_phoenix.sh -------------------------------------------------------------------------------- /src/phoenix_server/phoenix_gpg_key.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/phoenix_server/phoenix_gpg_key.asc -------------------------------------------------------------------------------- /src/phoenix_server/uninstall_phoenix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/phoenix_server/uninstall_phoenix.sh -------------------------------------------------------------------------------- /src/piapps/install_piapps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/piapps/install_piapps.sh -------------------------------------------------------------------------------- /src/piapps/uninstall_piapps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/piapps/uninstall_piapps.sh -------------------------------------------------------------------------------- /src/pihole/docker-compose(mac).yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/pihole/docker-compose(mac).yaml -------------------------------------------------------------------------------- /src/pihole/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/pihole/docker-compose.yaml -------------------------------------------------------------------------------- /src/pihole/info_pihole.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/pihole/info_pihole.sh -------------------------------------------------------------------------------- /src/pihole/intstall_pihole.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/pihole/intstall_pihole.sh -------------------------------------------------------------------------------- /src/pihole/menu_pihole.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/pihole/menu_pihole.sh -------------------------------------------------------------------------------- /src/pihole/set_static_IP.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/pihole/set_static_IP.sh -------------------------------------------------------------------------------- /src/pihole/start_stop_pihole.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/pihole/start_stop_pihole.sh -------------------------------------------------------------------------------- /src/pihole/systemd-resolved_disable.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/pihole/systemd-resolved_disable.sh -------------------------------------------------------------------------------- /src/pihole/uninstall_pihole.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/pihole/uninstall_pihole.sh -------------------------------------------------------------------------------- /src/premium/get_parmanas.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/premium/get_parmanas.sh -------------------------------------------------------------------------------- /src/premium/get_parmanpremium.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/premium/get_parmanpremium.sh -------------------------------------------------------------------------------- /src/premium/get_parmascale.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/premium/get_parmascale.sh -------------------------------------------------------------------------------- /src/premium/get_parmasql.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/premium/get_parmasql.sh -------------------------------------------------------------------------------- /src/premium/get_parmasync.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/premium/get_parmasync.sh -------------------------------------------------------------------------------- /src/premium/get_parmatwin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/premium/get_parmatwin.sh -------------------------------------------------------------------------------- /src/premium/get_parminer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/premium/get_parminer.sh -------------------------------------------------------------------------------- /src/premium/install_borg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/premium/install_borg.sh -------------------------------------------------------------------------------- /src/premium/install_sshfs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/premium/install_sshfs.sh -------------------------------------------------------------------------------- /src/premium/menu_parmadrive.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/premium/menu_parmadrive.sh -------------------------------------------------------------------------------- /src/premium/menu_parmadrive_raid.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/premium/menu_parmadrive_raid.sh -------------------------------------------------------------------------------- /src/public_pool/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/public_pool/Dockerfile -------------------------------------------------------------------------------- /src/public_pool/environment.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/public_pool/environment.prod.ts -------------------------------------------------------------------------------- /src/public_pool/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/public_pool/environment.ts -------------------------------------------------------------------------------- /src/public_pool/install_public_pool.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/public_pool/install_public_pool.sh -------------------------------------------------------------------------------- /src/public_pool/make_public-pool_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/public_pool/make_public-pool_env.sh -------------------------------------------------------------------------------- /src/public_pool/menu_public_pool.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/public_pool/menu_public_pool.sh -------------------------------------------------------------------------------- /src/public_pool/tor_public_pool.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/public_pool/tor_public_pool.sh -------------------------------------------------------------------------------- /src/qbittorrent/install_qbittorrent.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/qbittorrent/install_qbittorrent.sh -------------------------------------------------------------------------------- /src/qbittorrent/menu_qbittorrent.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/qbittorrent/menu_qbittorrent.sh -------------------------------------------------------------------------------- /src/qbittorrent/start_qbittorrent.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/qbittorrent/start_qbittorrent.sh -------------------------------------------------------------------------------- /src/rsync/rsync.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/rsync/rsync.sh -------------------------------------------------------------------------------- /src/rtl/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/rtl/Dockerfile -------------------------------------------------------------------------------- /src/rtl/enable_tor_rtl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/rtl/enable_tor_rtl.sh -------------------------------------------------------------------------------- /src/rtl/install_rtl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/rtl/install_rtl.sh -------------------------------------------------------------------------------- /src/rtl/make_rtl_config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/rtl/make_rtl_config.sh -------------------------------------------------------------------------------- /src/rtl/menu_rtl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/rtl/menu_rtl.sh -------------------------------------------------------------------------------- /src/rtl/reset_rtl_lnd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/rtl/reset_rtl_lnd.sh -------------------------------------------------------------------------------- /src/rtl/rtl_password.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/rtl/rtl_password.sh -------------------------------------------------------------------------------- /src/rtl/rtl_password_changer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/rtl/rtl_password_changer.sh -------------------------------------------------------------------------------- /src/rtl/run_rtl_docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/rtl/run_rtl_docker.sh -------------------------------------------------------------------------------- /src/rtl/start_rtl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/rtl/start_rtl.sh -------------------------------------------------------------------------------- /src/rtl/uninstall_rtl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/rtl/uninstall_rtl.sh -------------------------------------------------------------------------------- /src/sparrow/clear_sparrow.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/sparrow/clear_sparrow.sh -------------------------------------------------------------------------------- /src/sparrow/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/sparrow/config -------------------------------------------------------------------------------- /src/sparrow/download_sparrow.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/sparrow/download_sparrow.sh -------------------------------------------------------------------------------- /src/sparrow/install_sparrow.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/sparrow/install_sparrow.sh -------------------------------------------------------------------------------- /src/sparrow/make_sparrow_config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/sparrow/make_sparrow_config.sh -------------------------------------------------------------------------------- /src/sparrow/menu_sparrow.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/sparrow/menu_sparrow.sh -------------------------------------------------------------------------------- /src/sparrow/run_sparrow.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/sparrow/run_sparrow.sh -------------------------------------------------------------------------------- /src/sparrow/sparow_remote.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/sparrow/sparow_remote.sh -------------------------------------------------------------------------------- /src/sparrow/troubleshooting_sparrow.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/sparrow/troubleshooting_sparrow.sh -------------------------------------------------------------------------------- /src/sparrow/uninstall_sparrow.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/sparrow/uninstall_sparrow.sh -------------------------------------------------------------------------------- /src/sparrow/verify_sparrow.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/sparrow/verify_sparrow.sh -------------------------------------------------------------------------------- /src/specter/download_specter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/specter/download_specter.sh -------------------------------------------------------------------------------- /src/specter/install_specter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/specter/install_specter.sh -------------------------------------------------------------------------------- /src/specter/menu_specter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/specter/menu_specter.sh -------------------------------------------------------------------------------- /src/specter/run_specter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/specter/run_specter.sh -------------------------------------------------------------------------------- /src/specter/specter_mac_warning.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/specter/specter_mac_warning.sh -------------------------------------------------------------------------------- /src/specter/specter_make_dir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/specter/specter_make_dir.sh -------------------------------------------------------------------------------- /src/specter/uninstall_specter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/specter/uninstall_specter.sh -------------------------------------------------------------------------------- /src/specter/unpack_specter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/specter/unpack_specter.sh -------------------------------------------------------------------------------- /src/specter/verify_specter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/specter/verify_specter.sh -------------------------------------------------------------------------------- /src/start/check_installed_programs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/start/check_installed_programs.sh -------------------------------------------------------------------------------- /src/start/custom_startup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/start/custom_startup.sh -------------------------------------------------------------------------------- /src/start/do_loop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/start/do_loop.sh -------------------------------------------------------------------------------- /src/start/instructions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/start/instructions.sh -------------------------------------------------------------------------------- /src/start/intro.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/start/intro.sh -------------------------------------------------------------------------------- /src/start/motd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/start/motd.sh -------------------------------------------------------------------------------- /src/start/source_premium.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/start/source_premium.sh -------------------------------------------------------------------------------- /src/system/apt_get_update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/system/apt_get_update.sh -------------------------------------------------------------------------------- /src/system/autoupdate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/system/autoupdate.sh -------------------------------------------------------------------------------- /src/system/bash_check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/system/bash_check.sh -------------------------------------------------------------------------------- /src/system/get_ip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/system/get_ip.sh -------------------------------------------------------------------------------- /src/system/linux_distro.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/system/linux_distro.sh -------------------------------------------------------------------------------- /src/system/system_info.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/system/system_info.sh -------------------------------------------------------------------------------- /src/system/update_computer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/system/update_computer.sh -------------------------------------------------------------------------------- /src/system/which_computer_type.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/system/which_computer_type.sh -------------------------------------------------------------------------------- /src/text_functions/about.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/text_functions/about.sh -------------------------------------------------------------------------------- /src/text_functions/amusement.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/text_functions/amusement.sh -------------------------------------------------------------------------------- /src/text_functions/are_you_sure.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/text_functions/are_you_sure.sh -------------------------------------------------------------------------------- /src/text_functions/change_colours.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/text_functions/change_colours.sh -------------------------------------------------------------------------------- /src/text_functions/check_variables.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/text_functions/check_variables.sh -------------------------------------------------------------------------------- /src/text_functions/choose_proforma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/text_functions/choose_proforma -------------------------------------------------------------------------------- /src/text_functions/clear_buffer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/text_functions/clear_buffer.sh -------------------------------------------------------------------------------- /src/text_functions/command_tip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/text_functions/command_tip.sh -------------------------------------------------------------------------------- /src/text_functions/echo_choices.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/text_functions/echo_choices.sh -------------------------------------------------------------------------------- /src/text_functions/get_unique_line.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/text_functions/get_unique_line.sh -------------------------------------------------------------------------------- /src/text_functions/install_vim.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/text_functions/install_vim.sh -------------------------------------------------------------------------------- /src/text_functions/log_counter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/text_functions/log_counter.sh -------------------------------------------------------------------------------- /src/text_functions/menu_template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/text_functions/menu_template.txt -------------------------------------------------------------------------------- /src/text_functions/no_mac.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/text_functions/no_mac.sh -------------------------------------------------------------------------------- /src/text_functions/quit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/text_functions/quit.sh -------------------------------------------------------------------------------- /src/text_functions/rossisfree.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/text_functions/rossisfree.sh -------------------------------------------------------------------------------- /src/text_functions/set_colours.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/text_functions/set_colours.sh -------------------------------------------------------------------------------- /src/text_functions/set_terminal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/text_functions/set_terminal.sh -------------------------------------------------------------------------------- /src/text_functions/sned_sats.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/text_functions/sned_sats.sh -------------------------------------------------------------------------------- /src/text_functions/success_failure.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/text_functions/success_failure.sh -------------------------------------------------------------------------------- /src/text_functions/truncatedebuglog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/text_functions/truncatedebuglog.sh -------------------------------------------------------------------------------- /src/text_functions/vim_warning.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/text_functions/vim_warning.sh -------------------------------------------------------------------------------- /src/text_functions/yesorno.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/text_functions/yesorno.sh -------------------------------------------------------------------------------- /src/tools/UTXOracle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/tools/UTXOracle.py -------------------------------------------------------------------------------- /src/tools/adjust_ssd_power_saving.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/tools/adjust_ssd_power_saving.sh -------------------------------------------------------------------------------- /src/tools/badblocks_check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/tools/badblocks_check.sh -------------------------------------------------------------------------------- /src/tools/change_hostname.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/tools/change_hostname.sh -------------------------------------------------------------------------------- /src/tools/check_disk_space.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/tools/check_disk_space.sh -------------------------------------------------------------------------------- /src/tools/desktop_icon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/tools/desktop_icon.sh -------------------------------------------------------------------------------- /src/tools/drive_encryption.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/tools/drive_encryption.sh -------------------------------------------------------------------------------- /src/tools/format_assist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/tools/format_assist.sh -------------------------------------------------------------------------------- /src/tools/free_up_space.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/tools/free_up_space.sh -------------------------------------------------------------------------------- /src/tools/grpcurl_call.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/tools/grpcurl_call.sh -------------------------------------------------------------------------------- /src/tools/install_grub.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/tools/install_grub.sh -------------------------------------------------------------------------------- /src/tools/install_gsed.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/tools/install_gsed.sh -------------------------------------------------------------------------------- /src/tools/install_jq.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/tools/install_jq.sh -------------------------------------------------------------------------------- /src/tools/install_qrencode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/tools/install_qrencode.sh -------------------------------------------------------------------------------- /src/tools/install_veracrypt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/tools/install_veracrypt.sh -------------------------------------------------------------------------------- /src/tools/make_external_IP_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/tools/make_external_IP_script.sh -------------------------------------------------------------------------------- /src/tools/menu_iptables.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/tools/menu_iptables.sh -------------------------------------------------------------------------------- /src/tools/menu_tools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/tools/menu_tools.sh -------------------------------------------------------------------------------- /src/tools/pay_lightning_address.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/tools/pay_lightning_address.sh -------------------------------------------------------------------------------- /src/tools/qrencde.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/tools/qrencde.sh -------------------------------------------------------------------------------- /src/tools/rcfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/tools/rcfile -------------------------------------------------------------------------------- /src/tools/rest_protocol_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/tools/rest_protocol_test.sh -------------------------------------------------------------------------------- /src/tools/screen_video_recording.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/tools/screen_video_recording.sh -------------------------------------------------------------------------------- /src/tools/see_local_devices.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/tools/see_local_devices.sh -------------------------------------------------------------------------------- /src/tools/spoof_mac.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/tools/spoof_mac.sh -------------------------------------------------------------------------------- /src/tools/system_report.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/tools/system_report.sh -------------------------------------------------------------------------------- /src/tools/wireless_driver_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/tools/wireless_driver_install.sh -------------------------------------------------------------------------------- /src/tor/enable_tor_general.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/tor/enable_tor_general.sh -------------------------------------------------------------------------------- /src/tor/get_onion_address_variable.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/tor/get_onion_address_variable.sh -------------------------------------------------------------------------------- /src/tor/install_tor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/tor/install_tor.sh -------------------------------------------------------------------------------- /src/tor/install_tor_webserver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/tor/install_tor_webserver.sh -------------------------------------------------------------------------------- /src/tor/install_torbrowser.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/tor/install_torbrowser.sh -------------------------------------------------------------------------------- /src/tor/install_torrelay.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/tor/install_torrelay.sh -------------------------------------------------------------------------------- /src/tor/install_torssh.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/tor/install_torssh.sh -------------------------------------------------------------------------------- /src/tor/make_parmanode_tor_service.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/tor/make_parmanode_tor_service.sh -------------------------------------------------------------------------------- /src/tor/menu_tor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/tor/menu_tor.sh -------------------------------------------------------------------------------- /src/tor/menu_torbrowser.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/tor/menu_torbrowser.sh -------------------------------------------------------------------------------- /src/tor/menu_torrelay.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/tor/menu_torrelay.sh -------------------------------------------------------------------------------- /src/tor/menu_torssh.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/tor/menu_torssh.sh -------------------------------------------------------------------------------- /src/tor/overview.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/tor/overview.txt -------------------------------------------------------------------------------- /src/tor/start_stop_tor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/tor/start_stop_tor.sh -------------------------------------------------------------------------------- /src/tor/tor_server_info.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/tor/tor_server_info.sh -------------------------------------------------------------------------------- /src/tor/tor_status.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/tor/tor_status.sh -------------------------------------------------------------------------------- /src/tor/torrely_intro.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/tor/torrely_intro.sh -------------------------------------------------------------------------------- /src/tor/uninstall_tor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/tor/uninstall_tor.sh -------------------------------------------------------------------------------- /src/tor/uninstall_tor_webserver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/tor/uninstall_tor_webserver.sh -------------------------------------------------------------------------------- /src/tor/uninstall_torbrowser.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/tor/uninstall_torbrowser.sh -------------------------------------------------------------------------------- /src/tor/uninstall_torrelay.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/tor/uninstall_torrelay.sh -------------------------------------------------------------------------------- /src/tor/uninstall_torssh.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/tor/uninstall_torssh.sh -------------------------------------------------------------------------------- /src/trezor/install_trezor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/trezor/install_trezor.sh -------------------------------------------------------------------------------- /src/trezor/menu_trezor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/trezor/menu_trezor.sh -------------------------------------------------------------------------------- /src/trezor/run_trezor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/trezor/run_trezor.sh -------------------------------------------------------------------------------- /src/trezor/uninstall_trezor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/trezor/uninstall_trezor.sh -------------------------------------------------------------------------------- /src/trezor/verify_trezor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/trezor/verify_trezor.sh -------------------------------------------------------------------------------- /src/uddns/get_uddns.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/uddns/get_uddns.sh -------------------------------------------------------------------------------- /src/unfinished/Restart_template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/unfinished/Restart_template.txt -------------------------------------------------------------------------------- /src/vaultwarden/install_vaultwarden.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/vaultwarden/install_vaultwarden.sh -------------------------------------------------------------------------------- /src/vaultwarden/menu_vaultwarden.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/vaultwarden/menu_vaultwarden.sh -------------------------------------------------------------------------------- /src/vaultwarden/vaultwarden_tor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/src/vaultwarden/vaultwarden_tor.sh -------------------------------------------------------------------------------- /terms_and_conditions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/terms_and_conditions.txt -------------------------------------------------------------------------------- /version.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArmanTheParman/Parmanode/HEAD/version.conf --------------------------------------------------------------------------------