machineconfig 1.92__py3-none-any.whl → 1.94__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of machineconfig might be problematic. Click here for more details.
- machineconfig/__init__.py +0 -8
- machineconfig/cluster/__init__.py +0 -0
- machineconfig/cluster/cloud_manager.py +359 -0
- machineconfig/cluster/data_transfer.py +56 -0
- machineconfig/cluster/distribute.py +280 -0
- machineconfig/cluster/file_manager.py +238 -0
- machineconfig/cluster/job_params.py +148 -0
- machineconfig/cluster/loader_runner.py +150 -0
- machineconfig/cluster/remote_machine.py +281 -0
- machineconfig/cluster/script_execution.py +209 -0
- machineconfig/cluster/script_notify_upon_completion.py +63 -0
- machineconfig/cluster/self_ssh.py +59 -0
- machineconfig/cluster/session_managers.py +183 -0
- machineconfig/cluster/templates/__init__.py +0 -0
- machineconfig/cluster/templates/cli_click.py +104 -0
- machineconfig/cluster/templates/cli_gooey.py +119 -0
- machineconfig/cluster/templates/cli_trogon.py +21 -0
- machineconfig/cluster/templates/f.py +4 -0
- machineconfig/cluster/templates/run_cloud.py +52 -0
- machineconfig/cluster/templates/run_cluster.py +69 -0
- machineconfig/cluster/templates/run_remote.py +67 -0
- machineconfig/cluster/templates/utils.py +37 -0
- machineconfig/jobs/__pycache__/__init__.cpython-311.pyc +0 -0
- machineconfig/jobs/linux/msc/lid.sh +26 -0
- machineconfig/jobs/linux/msc/network.sh +39 -0
- machineconfig/jobs/python/__pycache__/__init__.cpython-311.pyc +0 -0
- machineconfig/jobs/python/__pycache__/check_installations.cpython-311.pyc +0 -0
- machineconfig/jobs/python/__pycache__/checkout_version.cpython-311.pyc +0 -0
- machineconfig/jobs/python/__pycache__/python_ve_symlink.cpython-311.pyc +0 -0
- machineconfig/jobs/python/archive/python_tools.txt +12 -0
- machineconfig/jobs/python/check_installations.py +26 -11
- machineconfig/jobs/python/checkout_version.py +24 -13
- machineconfig/jobs/python/create_zellij_template.py +4 -4
- machineconfig/jobs/python/python_cargo_build_share.py +13 -4
- machineconfig/jobs/python/python_ve_symlink.py +15 -4
- machineconfig/jobs/python/vscode/__pycache__/api.cpython-311.pyc +0 -0
- machineconfig/jobs/python/vscode/__pycache__/link_ve.cpython-311.pyc +0 -0
- machineconfig/jobs/python/vscode/api.py +48 -0
- machineconfig/jobs/python/vscode/link_ve.py +64 -0
- machineconfig/jobs/python/vscode/select_interpreter.py +84 -0
- machineconfig/jobs/python/vscode/sync_code.py +60 -0
- machineconfig/jobs/python_custom_installers/__pycache__/__init__.cpython-311.pyc +0 -0
- machineconfig/jobs/python_custom_installers/__pycache__/hx.cpython-311.pyc +0 -0
- machineconfig/jobs/python_custom_installers/archive/ngrok.py +62 -0
- machineconfig/jobs/python_custom_installers/dev/aider.py +37 -0
- machineconfig/jobs/python_custom_installers/dev/alacritty.py +72 -0
- machineconfig/jobs/python_custom_installers/dev/brave.py +67 -0
- machineconfig/jobs/python_custom_installers/dev/bypass_paywall.py +50 -0
- machineconfig/jobs/python_custom_installers/dev/code.py +62 -0
- machineconfig/jobs/python_custom_installers/dev/cursor.py +67 -0
- machineconfig/jobs/python_custom_installers/dev/docker.py +70 -0
- machineconfig/jobs/python_custom_installers/dev/docker_desktop.py +77 -0
- machineconfig/jobs/python_custom_installers/dev/espanso.py +82 -0
- machineconfig/jobs/python_custom_installers/dev/goes.py +59 -0
- machineconfig/jobs/python_custom_installers/dev/lvim.py +76 -0
- machineconfig/jobs/python_custom_installers/dev/nerdfont.py +67 -0
- machineconfig/jobs/python_custom_installers/dev/redis.py +69 -0
- machineconfig/jobs/python_custom_installers/dev/reverse_proxy.md +31 -0
- machineconfig/jobs/python_custom_installers/dev/warp-cli.py +71 -0
- machineconfig/jobs/python_custom_installers/dev/wezterm.py +71 -0
- machineconfig/jobs/python_custom_installers/gh.py +46 -4
- machineconfig/jobs/python_custom_installers/hx.py +103 -18
- machineconfig/jobs/python_custom_installers/scripts/linux/brave.sh +52 -0
- machineconfig/jobs/python_custom_installers/scripts/linux/docker.sh +140 -0
- machineconfig/jobs/python_custom_installers/scripts/linux/docker_start.sh +48 -0
- machineconfig/jobs/python_custom_installers/scripts/linux/edge.sh +47 -0
- machineconfig/jobs/python_custom_installers/scripts/linux/nerdfont.sh +64 -0
- machineconfig/jobs/python_custom_installers/scripts/linux/pgsql.sh +53 -0
- machineconfig/jobs/python_custom_installers/scripts/linux/redis.sh +76 -0
- machineconfig/jobs/python_custom_installers/scripts/linux/timescaledb.sh +91 -0
- machineconfig/jobs/python_custom_installers/scripts/linux/vscode.sh +66 -0
- machineconfig/jobs/python_custom_installers/scripts/linux/warp-cli.sh +77 -0
- machineconfig/jobs/python_custom_installers/scripts/linux/wezterm.sh +43 -0
- machineconfig/jobs/python_generic_installers/__pycache__/__init__.cpython-311.pyc +0 -0
- machineconfig/jobs/python_generic_installers/config.json +267 -0
- machineconfig/jobs/python_generic_installers/dev/config.archive.json +18 -0
- machineconfig/jobs/python_generic_installers/dev/config.json +394 -0
- machineconfig/jobs/python_linux_installers/__pycache__/__init__.cpython-311.pyc +0 -0
- machineconfig/jobs/python_linux_installers/archive/config.json +10 -0
- machineconfig/jobs/python_linux_installers/config.json +74 -0
- machineconfig/jobs/python_linux_installers/dev/config.json +138 -0
- machineconfig/jobs/python_windows_installers/__pycache__/__init__.cpython-311.pyc +0 -0
- machineconfig/jobs/python_windows_installers/archive/file.json +11 -0
- machineconfig/jobs/python_windows_installers/config.json +50 -0
- machineconfig/jobs/python_windows_installers/dev/config.json +3 -0
- machineconfig/jobs/windows/archive/archive_pygraphviz.ps1 +14 -0
- machineconfig/jobs/windows/archive/openssh-server_add_key.ps1 +7 -0
- machineconfig/jobs/windows/archive/openssh-server_copy-ssh-id.ps1 +14 -0
- machineconfig/jobs/windows/start_terminal.ps1 +6 -0
- machineconfig/jobs/windows/startup_file.cmd +2 -0
- machineconfig/profile/__pycache__/__init__.cpython-311.pyc +0 -0
- machineconfig/profile/__pycache__/create.cpython-311.pyc +0 -0
- machineconfig/profile/__pycache__/shell.cpython-311.pyc +0 -0
- machineconfig/profile/create.py +47 -13
- machineconfig/profile/create_hardlinks.py +42 -12
- machineconfig/profile/records/generic/shares.toml +5 -0
- machineconfig/profile/records/linux/apps_summary_report.csv +48 -0
- machineconfig/profile/records/linux/apps_summary_report.md +49 -0
- machineconfig/profile/records/windows/apps_summary_report.csv +1 -0
- machineconfig/profile/records/windows/apps_summary_report.md +2 -0
- machineconfig/profile/shell.py +62 -11
- machineconfig/scripts/__pycache__/__init__.cpython-311.pyc +0 -0
- machineconfig/scripts/cloud/init.sh +128 -0
- machineconfig/scripts/linux/activate_ve +87 -0
- machineconfig/scripts/linux/archive/tmate_conn +12 -0
- machineconfig/scripts/linux/archive/tmate_start +12 -0
- machineconfig/scripts/linux/archive/transfer_wsl_win +5 -0
- machineconfig/scripts/linux/checkout_versions +8 -0
- machineconfig/scripts/linux/choose_wezterm_theme +9 -0
- machineconfig/scripts/linux/cloud_copy +9 -0
- machineconfig/scripts/linux/cloud_manager +8 -0
- machineconfig/scripts/linux/cloud_mount +24 -0
- machineconfig/scripts/linux/cloud_repo_sync +22 -0
- machineconfig/scripts/linux/cloud_sync +24 -0
- machineconfig/scripts/linux/croshell +24 -0
- machineconfig/scripts/linux/devops +24 -0
- machineconfig/scripts/linux/fire +46 -0
- machineconfig/scripts/linux/ftpx +8 -0
- machineconfig/scripts/linux/fzf2g +21 -0
- machineconfig/scripts/linux/fzfag +17 -0
- machineconfig/scripts/linux/fzffg +25 -0
- machineconfig/scripts/linux/fzfg +23 -0
- machineconfig/scripts/linux/fzfrga +21 -0
- machineconfig/scripts/linux/gh_models +11 -0
- machineconfig/scripts/linux/kill_process +10 -0
- machineconfig/scripts/linux/mount_drive +128 -0
- machineconfig/scripts/linux/mount_nfs +62 -0
- machineconfig/scripts/linux/mount_nw_drive +72 -0
- machineconfig/scripts/linux/mount_smb +3 -0
- machineconfig/scripts/linux/programs +21 -0
- machineconfig/scripts/linux/repos +24 -0
- machineconfig/scripts/linux/scheduler +8 -0
- machineconfig/scripts/linux/share_cloud.sh +81 -0
- machineconfig/scripts/linux/share_nfs +49 -0
- machineconfig/scripts/linux/share_smb +1 -0
- machineconfig/scripts/linux/skrg +4 -0
- machineconfig/scripts/linux/start_docker +23 -0
- machineconfig/scripts/linux/start_slidev +23 -0
- machineconfig/scripts/linux/start_terminals +12 -0
- machineconfig/scripts/linux/switch_ip +20 -0
- machineconfig/scripts/linux/url2md +10 -0
- machineconfig/scripts/linux/z_ls +104 -0
- machineconfig/scripts/python/.mypy_cache/.gitignore +2 -0
- machineconfig/scripts/python/.mypy_cache/3.11/@plugins_snapshot.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/__future__.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/__future__.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/_ast.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/_ast.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/_bz2.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/_bz2.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/_codecs.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/_codecs.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/_collections_abc.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/_collections_abc.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/_compression.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/_compression.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/_decimal.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/_decimal.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/_frozen_importlib.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/_frozen_importlib.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/_frozen_importlib_external.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/_frozen_importlib_external.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/_io.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/_io.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/_locale.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/_locale.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/_stat.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/_stat.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/_struct.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/_struct.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/_thread.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/_thread.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/_typeshed/__init__.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/_typeshed/__init__.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/_typeshed/importlib.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/_typeshed/importlib.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/_warnings.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/_warnings.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/_weakref.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/_weakref.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/_weakrefset.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/_weakrefset.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/abc.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/abc.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/argparse.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/argparse.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/ast.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/ast.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/binascii.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/binascii.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/builtins.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/builtins.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/bz2.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/bz2.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/calendar.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/calendar.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/codecs.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/codecs.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/collections/__init__.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/collections/__init__.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/collections/abc.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/collections/abc.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/configparser.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/configparser.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/contextlib.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/contextlib.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/dataclasses.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/dataclasses.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/datetime.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/datetime.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/decimal.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/decimal.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/dis.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/dis.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/email/__init__.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/email/__init__.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/email/_policybase.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/email/_policybase.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/email/charset.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/email/charset.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/email/contentmanager.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/email/contentmanager.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/email/errors.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/email/errors.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/email/header.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/email/header.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/email/message.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/email/message.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/email/policy.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/email/policy.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/enum.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/enum.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/fnmatch.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/fnmatch.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/functools.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/functools.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/gc.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/gc.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/genericpath.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/genericpath.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/getpass.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/getpass.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/git/__init__.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/git/__init__.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/git/cmd.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/git/cmd.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/git/compat.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/git/compat.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/git/config.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/git/config.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/git/db.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/git/db.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/git/diff.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/git/diff.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/git/exc.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/git/exc.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/git/index/__init__.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/git/index/__init__.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/git/index/base.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/git/index/base.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/git/index/fun.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/git/index/fun.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/git/index/typ.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/git/index/typ.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/git/index/util.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/git/index/util.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/git/objects/__init__.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/git/objects/__init__.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/git/objects/base.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/git/objects/base.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/git/objects/blob.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/git/objects/blob.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/git/objects/commit.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/git/objects/commit.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/git/objects/fun.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/git/objects/fun.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/git/objects/submodule/__init__.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/git/objects/submodule/__init__.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/git/objects/submodule/base.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/git/objects/submodule/base.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/git/objects/submodule/root.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/git/objects/submodule/root.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/git/objects/submodule/util.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/git/objects/submodule/util.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/git/objects/tag.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/git/objects/tag.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/git/objects/tree.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/git/objects/tree.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/git/objects/util.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/git/objects/util.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/git/refs/__init__.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/git/refs/__init__.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/git/refs/head.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/git/refs/head.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/git/refs/log.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/git/refs/log.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/git/refs/reference.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/git/refs/reference.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/git/refs/remote.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/git/refs/remote.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/git/refs/symbolic.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/git/refs/symbolic.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/git/refs/tag.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/git/refs/tag.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/git/remote.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/git/remote.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/git/repo/__init__.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/git/repo/__init__.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/git/repo/base.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/git/repo/base.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/git/repo/fun.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/git/repo/fun.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/git/types.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/git/types.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/git/util.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/git/util.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/glob.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/glob.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/gzip.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/gzip.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/importlib/__init__.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/importlib/__init__.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/importlib/_abc.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/importlib/_abc.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/importlib/_bootstrap.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/importlib/_bootstrap.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/importlib/_bootstrap_external.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/importlib/_bootstrap_external.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/importlib/abc.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/importlib/abc.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/importlib/machinery.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/importlib/machinery.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/importlib/metadata/__init__.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/importlib/metadata/__init__.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/importlib/metadata/_meta.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/importlib/metadata/_meta.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/importlib/readers.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/importlib/readers.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/importlib/resources/__init__.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/importlib/resources/__init__.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/importlib/resources/_common.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/importlib/resources/_common.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/importlib/resources/abc.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/importlib/resources/abc.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/inspect.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/inspect.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/io.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/io.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/itertools.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/itertools.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/locale.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/locale.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/logging/__init__.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/logging/__init__.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/mimetypes.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/mimetypes.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/mmap.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/mmap.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/numbers.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/numbers.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/opcode.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/opcode.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/os/__init__.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/os/__init__.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/os/path.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/os/path.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/pathlib.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/pathlib.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/platform.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/platform.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/posixpath.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/posixpath.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/re.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/re.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/resource.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/resource.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/shlex.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/shlex.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/shutil.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/shutil.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/signal.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/signal.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/src/__init__.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/src/__init__.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/src/machineconfig/__init__.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/src/machineconfig/__init__.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/src/machineconfig/scripts/__init__.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/src/machineconfig/scripts/__init__.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/src/machineconfig/scripts/python/__init__.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/src/machineconfig/scripts/python/__init__.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/sre_compile.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/sre_compile.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/sre_constants.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/sre_constants.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/sre_parse.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/sre_parse.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/stat.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/stat.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/string.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/string.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/struct.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/struct.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/subprocess.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/subprocess.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/sys/__init__.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/sys/__init__.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/tarfile.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/tarfile.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/tempfile.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/tempfile.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/textwrap.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/textwrap.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/threading.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/threading.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/time.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/time.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/types.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/types.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/typing.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/typing.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/typing_extensions.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/typing_extensions.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/urllib/__init__.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/urllib/__init__.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/urllib/parse.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/urllib/parse.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/uuid.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/uuid.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/warnings.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/warnings.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/weakref.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/weakref.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/zipfile/__init__.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/zipfile/__init__.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/zlib.data.json +1 -0
- machineconfig/scripts/python/.mypy_cache/3.11/zlib.meta.json +1 -0
- machineconfig/scripts/python/.mypy_cache/CACHEDIR.TAG +3 -0
- machineconfig/scripts/python/__pycache__/__init__.cpython-311.pyc +0 -0
- machineconfig/scripts/python/__pycache__/cloud_copy.cpython-311.pyc +0 -0
- machineconfig/scripts/python/__pycache__/cloud_mount.cpython-311.pyc +0 -0
- machineconfig/scripts/python/__pycache__/cloud_repo_sync.cpython-311.pyc +0 -0
- machineconfig/scripts/python/__pycache__/cloud_sync.cpython-311.pyc +0 -0
- machineconfig/scripts/python/__pycache__/croshell.cpython-311.pyc +0 -0
- machineconfig/scripts/python/__pycache__/devops.cpython-311.pyc +0 -0
- machineconfig/scripts/python/__pycache__/devops_backup_retrieve.cpython-311.pyc +0 -0
- machineconfig/scripts/python/__pycache__/devops_devapps_install.cpython-311.pyc +0 -0
- machineconfig/scripts/python/__pycache__/devops_update_repos.cpython-311.pyc +0 -0
- machineconfig/scripts/python/__pycache__/fire_jobs.cpython-311.pyc +0 -0
- machineconfig/scripts/python/__pycache__/gh_models.cpython-311.pyc +0 -0
- machineconfig/scripts/python/__pycache__/repos.cpython-311.pyc +0 -0
- machineconfig/scripts/python/__pycache__/url2md.cpython-311.pyc +0 -0
- machineconfig/scripts/python/__pycache__/viewer.cpython-311.pyc +0 -0
- machineconfig/scripts/python/__pycache__/vscode_api.cpython-311.pyc +0 -0
- machineconfig/scripts/python/archive/im2text.py +36 -0
- machineconfig/scripts/python/archive/tmate_conn.py +44 -0
- machineconfig/scripts/python/archive/tmate_start.py +48 -0
- machineconfig/scripts/python/choose_wezterm_theme.py +23 -4
- machineconfig/scripts/python/cloud_copy.py +131 -29
- machineconfig/scripts/python/cloud_manager.py +55 -2
- machineconfig/scripts/python/cloud_mount.py +43 -4
- machineconfig/scripts/python/cloud_repo_sync.py +114 -103
- machineconfig/scripts/python/cloud_sync.py +36 -220
- machineconfig/scripts/python/croshell.py +102 -32
- machineconfig/scripts/python/devops.py +143 -42
- machineconfig/scripts/python/devops_add_identity.py +112 -9
- machineconfig/scripts/python/devops_add_ssh_key.py +170 -15
- machineconfig/scripts/python/devops_backup_retrieve.py +132 -14
- machineconfig/scripts/python/devops_devapps_install.py +33 -11
- machineconfig/scripts/python/devops_update_repos.py +36 -29
- machineconfig/scripts/python/dotfile.py +8 -3
- machineconfig/scripts/python/fire_jobs.py +145 -289
- machineconfig/scripts/python/ftpx.py +76 -18
- machineconfig/scripts/python/get_zellij_cmd.py +14 -0
- machineconfig/scripts/python/gh_models.py +72 -25
- machineconfig/scripts/python/helpers/__init__.py +0 -0
- machineconfig/scripts/python/helpers/__pycache__/__init__.cpython-311.pyc +0 -0
- machineconfig/scripts/python/helpers/__pycache__/cloud_helpers.cpython-311.pyc +0 -0
- machineconfig/scripts/python/helpers/__pycache__/helpers2.cpython-311.pyc +0 -0
- machineconfig/scripts/python/helpers/__pycache__/helpers4.cpython-311.pyc +0 -0
- machineconfig/scripts/python/helpers/cloud_helpers.py +134 -0
- machineconfig/scripts/python/helpers/helpers2.py +149 -0
- machineconfig/scripts/python/helpers/helpers4.py +178 -0
- machineconfig/scripts/python/helpers/helpers5.py +50 -0
- machineconfig/scripts/python/helpers/repo_sync_helpers.py +126 -0
- machineconfig/scripts/python/mount_nfs.py +46 -15
- machineconfig/scripts/python/mount_nw_drive.py +22 -10
- machineconfig/scripts/python/mount_ssh.py +28 -12
- machineconfig/scripts/python/onetimeshare.py +23 -15
- machineconfig/scripts/python/pomodoro.py +38 -24
- machineconfig/scripts/python/repos.py +29 -32
- machineconfig/scripts/python/scheduler.py +19 -18
- machineconfig/scripts/python/snapshot.py +14 -6
- machineconfig/scripts/python/start_slidev.py +24 -32
- machineconfig/scripts/python/start_terminals.py +23 -10
- machineconfig/scripts/python/viewer.py +53 -0
- machineconfig/scripts/python/viewer_template.py +140 -0
- machineconfig/scripts/python/wifi_conn.py +20 -12
- machineconfig/scripts/python/wsl_windows_transfer.py +18 -10
- machineconfig/scripts/windows/activate_ve.ps1 +54 -0
- machineconfig/scripts/windows/archive/gource2vid.ps1 +14 -0
- machineconfig/scripts/windows/archive/im2text.ps1 +27 -0
- machineconfig/scripts/windows/archive/secure_pull.ps1 +46 -0
- machineconfig/scripts/windows/archive/secure_push.ps1 +85 -0
- machineconfig/scripts/windows/archive/tmate_conn.ps1 +7 -0
- machineconfig/scripts/windows/checkout_version.ps1 +6 -0
- machineconfig/scripts/windows/choose_wezterm_theme.ps1 +20 -0
- machineconfig/scripts/windows/cloud_copy.ps1 +17 -0
- machineconfig/scripts/windows/cloud_manager.ps1 +8 -0
- machineconfig/scripts/windows/cloud_mount.ps1 +25 -0
- machineconfig/scripts/windows/cloud_repo_sync.ps1 +8 -0
- machineconfig/scripts/windows/cloud_sync.ps1 +21 -0
- machineconfig/scripts/windows/croshell.ps1 +40 -0
- machineconfig/scripts/windows/devops.ps1 +32 -0
- machineconfig/scripts/windows/dotfile.ps1 +9 -0
- machineconfig/scripts/windows/fire.ps1 +33 -0
- machineconfig/scripts/windows/ftpx.ps1 +5 -0
- machineconfig/scripts/windows/fzfb.ps1 +3 -0
- machineconfig/scripts/windows/fzfg.ps1 +2 -0
- machineconfig/scripts/windows/fzfrga.bat +20 -0
- machineconfig/scripts/windows/gpt.ps1 +23 -0
- machineconfig/scripts/windows/grep.ps1 +2 -0
- machineconfig/scripts/windows/kill_process.ps1 +8 -0
- machineconfig/scripts/windows/mount_nfs.ps1 +44 -0
- machineconfig/scripts/windows/mount_nw.ps1 +9 -0
- machineconfig/scripts/windows/mount_smb.ps1 +2 -0
- machineconfig/scripts/windows/mount_ssh.ps1 +17 -0
- machineconfig/scripts/windows/nano.ps1 +3 -0
- machineconfig/scripts/windows/neofetch.ps1 +2 -0
- machineconfig/scripts/windows/pomodoro.ps1 +8 -0
- machineconfig/scripts/windows/py2exe.ps1 +12 -0
- machineconfig/scripts/windows/reload_path.ps1 +3 -0
- machineconfig/scripts/windows/repos.ps1 +27 -0
- machineconfig/scripts/windows/scheduler.ps1 +6 -0
- machineconfig/scripts/windows/share_cloud.cmd +34 -0
- machineconfig/scripts/windows/share_nfs.ps1 +0 -0
- machineconfig/scripts/windows/share_smb.ps1 +22 -0
- machineconfig/scripts/windows/snapshot.ps1 +5 -0
- machineconfig/scripts/windows/start_slidev.ps1 +21 -0
- machineconfig/scripts/windows/start_terminals.ps1 +22 -0
- machineconfig/scripts/windows/unlock_bitlocker.ps1 +10 -0
- machineconfig/scripts/windows/utils/op_script_delete.ps1 +7 -0
- machineconfig/scripts/windows/wifi_conn.ps1 +7 -0
- machineconfig/scripts/windows/wsl_rdp_windows_port_forwarding.ps1 +46 -0
- machineconfig/scripts/windows/wsl_ssh_windows_port_forwarding.ps1 +76 -0
- machineconfig/scripts/windows/wsl_windows_transfer.ps1 +7 -0
- machineconfig/settings/__pycache__/__init__.cpython-311.pyc +0 -0
- machineconfig/settings/broot/br.sh +51 -0
- machineconfig/settings/broot/brootcd.ps1 +32 -0
- machineconfig/settings/broot/conf.toml +5 -0
- machineconfig/settings/glow/glow.yml +11 -0
- machineconfig/settings/gromit-mpx/gromit-mpx.cfg +34 -0
- machineconfig/settings/helix/config.toml +27 -0
- machineconfig/settings/helix/languages.toml +22 -0
- machineconfig/settings/keras/keras.json +6 -0
- machineconfig/settings/keyboard/espanso/config/default.yml +45 -0
- machineconfig/settings/keyboard/espanso/match/base.yml +57 -0
- machineconfig/settings/keyboard/kanata/kanata.kbd +0 -0
- machineconfig/settings/lf/linux/autocall/delete.sh +0 -0
- machineconfig/settings/lf/linux/autocall/on-cd.sh +0 -0
- machineconfig/settings/lf/linux/autocall/on-quit.sh +0 -0
- machineconfig/settings/lf/linux/autocall/open.sh +0 -0
- machineconfig/settings/lf/linux/autocall/paste.sh +0 -0
- machineconfig/settings/lf/linux/autocall/pre-cd.sh +0 -0
- machineconfig/settings/lf/linux/autocall/rename.sh +0 -0
- machineconfig/settings/lf/linux/colors +196 -0
- machineconfig/settings/lf/linux/exe/cleaner.sh +7 -0
- machineconfig/settings/lf/linux/exe/fzf_nano.sh +16 -0
- machineconfig/settings/lf/linux/exe/leftpane_previewer.sh +5 -0
- machineconfig/settings/lf/linux/exe/lfcd.sh +32 -0
- machineconfig/settings/lf/linux/exe/previewer.sh +37 -0
- machineconfig/settings/lf/linux/exe/previewer_archive.sh +155 -0
- machineconfig/settings/lf/linux/icons +357 -0
- machineconfig/settings/lf/linux/lfrc +226 -0
- machineconfig/settings/lf/windows/autocall/delete.ps1 +0 -0
- machineconfig/settings/lf/windows/autocall/on-cd.ps1 +0 -0
- machineconfig/settings/lf/windows/autocall/on-quit.ps1 +0 -0
- machineconfig/settings/lf/windows/autocall/open.ps1 +0 -0
- machineconfig/settings/lf/windows/autocall/paste.ps1 +0 -0
- machineconfig/settings/lf/windows/autocall/pre-cd.ps1 +0 -0
- machineconfig/settings/lf/windows/autocall/rename.ps1 +0 -0
- machineconfig/settings/lf/windows/cd_tere.ps1 +4 -0
- machineconfig/settings/lf/windows/cd_zoxide.ps1 +4 -0
- machineconfig/settings/lf/windows/cd_zoxide2.ps1 +4 -0
- machineconfig/settings/lf/windows/colors +159 -0
- machineconfig/settings/lf/windows/fzf_edit.ps1 +6 -0
- machineconfig/settings/lf/windows/icons +357 -0
- machineconfig/settings/lf/windows/leftpane_previewer.ps1 +3 -0
- machineconfig/settings/lf/windows/lfcd.ps1 +35 -0
- machineconfig/settings/lf/windows/lfrc +133 -0
- machineconfig/settings/lf/windows/mkdir.ps1 +3 -0
- machineconfig/settings/lf/windows/mkfile.ps1 +3 -0
- machineconfig/settings/lf/windows/previewer.ps1 +7 -0
- machineconfig/settings/lf/windows/tst.ps1 +1 -0
- machineconfig/settings/linters/.flake8 +24 -0
- machineconfig/settings/linters/.mypy.ini +29 -0
- machineconfig/settings/linters/.pylintrc +91 -0
- machineconfig/settings/linters/.ruff.toml +77 -0
- machineconfig/settings/linters/.ruff_cache/.gitignore +2 -0
- machineconfig/settings/linters/.ruff_cache/CACHEDIR.TAG +1 -0
- machineconfig/settings/lvim/linux/config.lua +0 -0
- machineconfig/settings/lvim/windows/archive/config_additional.lua +39 -0
- machineconfig/settings/lvim/windows/lua/user/custom_config.lua +13 -0
- machineconfig/settings/mprocs/windows/mprocs.yaml +55 -0
- machineconfig/settings/mprocs/windows/other +12 -0
- machineconfig/settings/pistol/pistol.conf +8 -0
- machineconfig/settings/presenterm/config.yaml +76 -0
- machineconfig/settings/procs/.procs.toml +142 -0
- machineconfig/settings/pudb/pudb.cfg +25 -0
- machineconfig/settings/rofi/config.rasi +4 -0
- machineconfig/settings/rofi/config_default.rasi +147 -0
- machineconfig/settings/shells/alacritty/alacritty.toml +40 -0
- machineconfig/settings/shells/alacritty/alacritty.yml +0 -0
- machineconfig/settings/shells/bash/.inputrc +3 -0
- machineconfig/settings/shells/bash/init.sh +66 -0
- machineconfig/settings/shells/hyper/.hyper.js +201 -0
- machineconfig/settings/shells/ipy/profiles/default/__init__.py +0 -0
- machineconfig/settings/shells/ipy/profiles/default/__pycache__/__init__.cpython-311.pyc +0 -0
- machineconfig/settings/shells/ipy/profiles/default/startup/__init__.py +0 -0
- machineconfig/settings/shells/ipy/profiles/default/startup/__pycache__/__init__.cpython-311.pyc +0 -0
- machineconfig/settings/shells/ipy/profiles/default/startup/__pycache__/playext.cpython-311.pyc +0 -0
- machineconfig/settings/shells/ipy/profiles/default/startup/playext.py +83 -0
- machineconfig/settings/shells/kitty/kitty.conf +1476 -0
- machineconfig/settings/shells/nushell/config.nu +36 -0
- machineconfig/settings/shells/nushell/env.nu +13 -0
- machineconfig/settings/shells/pwsh/init.ps1 +88 -0
- machineconfig/settings/shells/pwsh/profile.ps1 +0 -0
- machineconfig/settings/shells/starship/starship.toml +58 -0
- machineconfig/settings/shells/vtm/settings.xml +297 -0
- machineconfig/settings/shells/wezterm/wezterm.lua +193 -0
- machineconfig/settings/shells/wt/settings.json +526 -0
- machineconfig/settings/streamlit/config.toml +22 -0
- machineconfig/settings/svim/linux/init.toml +48 -0
- machineconfig/settings/svim/windows/init.toml +48 -0
- machineconfig/settings/tere/terecd.ps1 +8 -0
- machineconfig/settings/tere/terecd.sh +8 -0
- machineconfig/settings/tmux/.tmate.conf +3 -0
- machineconfig/settings/tmux/.tmux.conf +6 -0
- machineconfig/settings/wsl/.wslconfig +35 -0
- machineconfig/settings/yazi/keymap.toml +0 -0
- machineconfig/settings/yazi/theme.toml +0 -0
- machineconfig/settings/yazi/yazi.toml +4 -0
- machineconfig/settings/zed/settings.json +35 -0
- machineconfig/settings/zellij/commands/monitor +9 -0
- machineconfig/settings/zellij/commands/standard_panes +33 -0
- machineconfig/settings/zellij/config.kdl +295 -0
- machineconfig/settings/zellij/config.orig.kdl +295 -0
- machineconfig/settings/zellij/layouts/hist +13 -0
- machineconfig/settings/zellij/layouts/panes.kdl +20 -0
- machineconfig/settings/zellij/layouts/st.kdl +21 -0
- machineconfig/settings/zellij/layouts/st2.kdl +59 -0
- machineconfig/settings/zellij/layouts/stacked_panes.kdl +11 -0
- machineconfig/setup_linux/nix/cli_installation.sh +166 -0
- machineconfig/setup_linux/others/mint_keyboard_shortcuts.sh +30 -0
- machineconfig/setup_linux/others/openssh-server_add_pub_key.sh +60 -0
- machineconfig/setup_linux/web_shortcuts/all.sh +53 -0
- machineconfig/setup_linux/web_shortcuts/ascii_art.sh +100 -0
- machineconfig/setup_linux/web_shortcuts/croshell.sh +66 -0
- machineconfig/setup_linux/web_shortcuts/interactive.sh +241 -0
- machineconfig/setup_linux/web_shortcuts/ssh.sh +64 -0
- machineconfig/setup_linux/web_shortcuts/update_system.sh +55 -0
- machineconfig/setup_windows/others/docker.ps1 +7 -0
- machineconfig/setup_windows/others/obs.ps1 +4 -0
- machineconfig/setup_windows/web_shortcuts/all.ps1 +18 -0
- machineconfig/setup_windows/web_shortcuts/ascii_art.ps1 +36 -0
- machineconfig/setup_windows/web_shortcuts/croshell.ps1 +16 -0
- machineconfig/setup_windows/web_shortcuts/interactive.ps1 +200 -0
- machineconfig/setup_windows/web_shortcuts/ssh.ps1 +11 -0
- machineconfig/setup_windows/wt_and_pwsh/install_fonts.ps1 +27 -0
- machineconfig/setup_windows/wt_and_pwsh/set_pwsh_theme.py +12 -2
- machineconfig/setup_windows/wt_and_pwsh/set_wt_settings.py +45 -9
- machineconfig/utils/ai/__init__.py +0 -0
- machineconfig/utils/ai/browser_user_wrapper.py +51 -0
- machineconfig/utils/ai/generate_file_checklist.py +74 -0
- machineconfig/utils/ai/url2md.py +75 -0
- machineconfig/utils/installer.py +101 -253
- machineconfig/utils/installer_utils/__init__.py +0 -0
- machineconfig/utils/installer_utils/installer_abc.py +100 -0
- machineconfig/utils/installer_utils/installer_class.py +253 -0
- machineconfig/utils/procs.py +69 -16
- machineconfig/utils/scheduling.py +47 -13
- machineconfig/utils/utils.py +39 -371
- machineconfig/utils/utils_code.py +82 -0
- machineconfig/utils/utils_links.py +88 -0
- machineconfig/utils/utils_options.py +163 -0
- machineconfig/utils/utils_path.py +151 -0
- machineconfig/utils/ve.py +37 -225
- machineconfig/utils/ve_utils/ve1.py +111 -0
- machineconfig/utils/ve_utils/ve2.py +142 -0
- {machineconfig-1.92.dist-info → machineconfig-1.94.dist-info}/METADATA +25 -21
- machineconfig-1.94.dist-info/RECORD +710 -0
- {machineconfig-1.92.dist-info → machineconfig-1.94.dist-info}/WHEEL +1 -1
- machineconfig-1.92.dist-info/LICENSE +0 -201
- machineconfig-1.92.dist-info/RECORD +0 -70
- {machineconfig-1.92.dist-info → machineconfig-1.94.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
#!/usr/bin/bash
|
|
2
|
+
#=======================================================================
|
|
3
|
+
# 🔄 REDIS INSTALLATION SCRIPT 🔄
|
|
4
|
+
#=======================================================================
|
|
5
|
+
# This script installs Redis server on Debian/Ubuntu-based Linux distributions
|
|
6
|
+
# Reference: https://redis.io/docs/latest/operate/oss_and_stack/install/install-redis/install-redis-on-linux/
|
|
7
|
+
|
|
8
|
+
echo """
|
|
9
|
+
#=======================================================================
|
|
10
|
+
🔍 DETECTING SYSTEM | Identifying OS distribution version
|
|
11
|
+
#=======================================================================
|
|
12
|
+
"""
|
|
13
|
+
|
|
14
|
+
get_ubuntu_base_version() {
|
|
15
|
+
local mint_codename=$(lsb_release -cs)
|
|
16
|
+
case "$mint_codename" in
|
|
17
|
+
"wilma")
|
|
18
|
+
echo "noble"
|
|
19
|
+
;;
|
|
20
|
+
"virginia")
|
|
21
|
+
echo "jammy"
|
|
22
|
+
;;
|
|
23
|
+
*)
|
|
24
|
+
echo "$mint_codename"
|
|
25
|
+
;;
|
|
26
|
+
esac
|
|
27
|
+
}
|
|
28
|
+
ubuntu_version=$(get_ubuntu_base_version)
|
|
29
|
+
echo "📋 Detected distribution: $ubuntu_version"
|
|
30
|
+
|
|
31
|
+
echo """
|
|
32
|
+
#=======================================================================
|
|
33
|
+
🔑 ADDING REPOSITORY KEYS | Setting up Redis repository
|
|
34
|
+
#=======================================================================
|
|
35
|
+
"""
|
|
36
|
+
|
|
37
|
+
# Add Redis GPG key
|
|
38
|
+
echo "🔐 Adding Redis GPG key..."
|
|
39
|
+
curl -fsSL https://packages.redis.io/gpg | sudo gpg --dearmor -o /usr/share/keyrings/redis-archive-keyring.gpg
|
|
40
|
+
sudo chmod 644 /usr/share/keyrings/redis-archive-keyring.gpg
|
|
41
|
+
|
|
42
|
+
# Add Redis repository
|
|
43
|
+
echo "📝 Adding Redis repository to sources list..."
|
|
44
|
+
echo "deb [signed-by=/usr/share/keyrings/redis-archive-keyring.gpg] https://packages.redis.io/deb $ubuntu_version main" | sudo tee /etc/apt/sources.list.d/redis.list
|
|
45
|
+
|
|
46
|
+
echo """
|
|
47
|
+
#=======================================================================
|
|
48
|
+
📦 INSTALLING REDIS | Updating and installing packages
|
|
49
|
+
#=======================================================================
|
|
50
|
+
"""
|
|
51
|
+
|
|
52
|
+
# Update package lists
|
|
53
|
+
echo "🔄 Updating package lists..."
|
|
54
|
+
sudo nala update
|
|
55
|
+
|
|
56
|
+
# Install Redis
|
|
57
|
+
echo "📥 Installing Redis..."
|
|
58
|
+
sudo nala install redis -y
|
|
59
|
+
|
|
60
|
+
echo """
|
|
61
|
+
#=======================================================================
|
|
62
|
+
✅ INSTALLATION COMPLETE | Redis has been installed successfully
|
|
63
|
+
#=======================================================================
|
|
64
|
+
|
|
65
|
+
📋 REDIS SERVER COMMANDS:
|
|
66
|
+
"""
|
|
67
|
+
echo "▶️ To start Redis server: sudo systemctl start redis-server"
|
|
68
|
+
echo "⏹️ To stop Redis server: sudo systemctl stop redis-server"
|
|
69
|
+
echo "🔄 To restart Redis server: sudo systemctl restart redis-server"
|
|
70
|
+
echo "ℹ️ To check status of Redis server: sudo systemctl status redis-server"
|
|
71
|
+
echo "🚀 To enable Redis on boot: sudo systemctl enable --now redis-server"
|
|
72
|
+
echo """
|
|
73
|
+
#=======================================================================
|
|
74
|
+
💡 QUICK TEST | Try connecting to Redis with: redis-cli ping
|
|
75
|
+
#=======================================================================
|
|
76
|
+
"""
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
#!/bin/bash
|
|
2
|
+
#=======================================================================
|
|
3
|
+
# ⏱️ TIMESCALEDB INSTALLATION SCRIPT ⏱️
|
|
4
|
+
#=======================================================================
|
|
5
|
+
# This script installs TimescaleDB on Ubuntu/Debian-based Linux distributions
|
|
6
|
+
# Reference: https://docs.timescale.com/self-hosted/latest/install/installation-linux/
|
|
7
|
+
|
|
8
|
+
echo """
|
|
9
|
+
#=======================================================================
|
|
10
|
+
🔍 DETECTING SYSTEM | Identifying OS distribution version
|
|
11
|
+
#=======================================================================
|
|
12
|
+
"""
|
|
13
|
+
|
|
14
|
+
get_ubuntu_base_version() {
|
|
15
|
+
local os_codename=$(lsb_release -cs)
|
|
16
|
+
case "$os_codename" in
|
|
17
|
+
"wilma")
|
|
18
|
+
echo "noble" # Map Mint Wilma to the base image Ubuntu 24.04 LTS
|
|
19
|
+
;;
|
|
20
|
+
"virginia")
|
|
21
|
+
echo "jammy" # Map Mint Virginia to the base image Ubuntu 22.04 LTS
|
|
22
|
+
;;
|
|
23
|
+
*)
|
|
24
|
+
echo "$os_codename"
|
|
25
|
+
;;
|
|
26
|
+
esac
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
ubuntu_version=$(get_ubuntu_base_version)
|
|
30
|
+
echo "📋 Detected distribution: $ubuntu_version"
|
|
31
|
+
|
|
32
|
+
echo """
|
|
33
|
+
#=======================================================================
|
|
34
|
+
🐘 INSTALLING POSTGRESQL | Setting up PostgreSQL dependencies
|
|
35
|
+
#=======================================================================
|
|
36
|
+
"""
|
|
37
|
+
|
|
38
|
+
# Add PostgreSQL repository setup
|
|
39
|
+
echo "🔧 Setting up PostgreSQL repository..."
|
|
40
|
+
sudo nala install postgresql-common -y
|
|
41
|
+
sudo /usr/share/postgresql-common/pgdg/apt.postgresql.org.sh -y
|
|
42
|
+
|
|
43
|
+
echo """
|
|
44
|
+
#=======================================================================
|
|
45
|
+
🔑 ADDING REPOSITORY KEYS | Setting up TimescaleDB repository
|
|
46
|
+
#=======================================================================
|
|
47
|
+
"""
|
|
48
|
+
|
|
49
|
+
# Add TimescaleDB repository
|
|
50
|
+
echo "📝 Adding TimescaleDB repository to sources list..."
|
|
51
|
+
echo "deb https://packagecloud.io/timescale/timescaledb/ubuntu/ $ubuntu_version main" | sudo tee /etc/apt/sources.list.d/timescaledb.list
|
|
52
|
+
|
|
53
|
+
echo "🔐 Adding TimescaleDB GPG key..."
|
|
54
|
+
wget --quiet -O - https://packagecloud.io/timescale/timescaledb/gpgkey | sudo gpg --dearmor -o /etc/apt/trusted.gpg.d/timescaledb.gpg
|
|
55
|
+
|
|
56
|
+
echo """
|
|
57
|
+
#=======================================================================
|
|
58
|
+
📦 INSTALLING TIMESCALEDB | Updating and installing packages
|
|
59
|
+
#=======================================================================
|
|
60
|
+
"""
|
|
61
|
+
|
|
62
|
+
# Update package lists
|
|
63
|
+
echo "🔄 Updating package lists..."
|
|
64
|
+
sudo nala update
|
|
65
|
+
|
|
66
|
+
# Install TimescaleDB with PostgreSQL 16
|
|
67
|
+
echo "📥 Installing PostgreSQL 16 and TimescaleDB..."
|
|
68
|
+
sudo nala install -y postgresql-16 postgresql-client-16 timescaledb-2-postgresql-16
|
|
69
|
+
|
|
70
|
+
echo """
|
|
71
|
+
#=======================================================================
|
|
72
|
+
⚙️ CONFIGURING TIMESCALEDB | Optimizing database settings
|
|
73
|
+
#=======================================================================
|
|
74
|
+
"""
|
|
75
|
+
|
|
76
|
+
# Run TimescaleDB tuning tool
|
|
77
|
+
echo "🔧 Running TimescaleDB tuning utility..."
|
|
78
|
+
sudo timescaledb-tune
|
|
79
|
+
|
|
80
|
+
# Restart PostgreSQL service
|
|
81
|
+
echo "🔄 Restarting PostgreSQL service..."
|
|
82
|
+
sudo systemctl restart postgresql
|
|
83
|
+
|
|
84
|
+
echo """
|
|
85
|
+
#=======================================================================
|
|
86
|
+
✅ INSTALLATION COMPLETE | TimescaleDB has been installed successfully
|
|
87
|
+
#=======================================================================
|
|
88
|
+
"""
|
|
89
|
+
echo "🚀 To connect to PostgreSQL, run: sudo -u postgres psql"
|
|
90
|
+
echo "💡 To enable TimescaleDB in a database, run: CREATE EXTENSION IF NOT EXISTS timescaledb CASCADE;"
|
|
91
|
+
echo "ℹ️ For more information, visit: https://docs.timescale.com/self-hosted/latest/install/"
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
#!/bin/bash
|
|
2
|
+
#=======================================================================
|
|
3
|
+
# 💻 VS CODE INSTALLATION SCRIPT 💻
|
|
4
|
+
#=======================================================================
|
|
5
|
+
# This script installs Visual Studio Code on Ubuntu/Debian-based Linux distributions
|
|
6
|
+
# Reference: https://code.visualstudio.com/docs/setup/linux
|
|
7
|
+
|
|
8
|
+
echo """
|
|
9
|
+
#=======================================================================
|
|
10
|
+
🔑 ADDING REPOSITORY KEYS | Setting up Microsoft repository
|
|
11
|
+
#=======================================================================
|
|
12
|
+
"""
|
|
13
|
+
|
|
14
|
+
# Check if GPG key is already installed
|
|
15
|
+
if [ ! -f /etc/apt/keyrings/packages.microsoft.gpg ]; then
|
|
16
|
+
echo "🔐 Downloading and installing Microsoft GPG key..."
|
|
17
|
+
wget -qO- https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > packages.microsoft.gpg
|
|
18
|
+
sudo install -D -o root -g root -m 644 packages.microsoft.gpg /etc/apt/keyrings/packages.microsoft.gpg
|
|
19
|
+
rm -f packages.microsoft.gpg
|
|
20
|
+
else
|
|
21
|
+
echo "✅ Microsoft GPG key already installed"
|
|
22
|
+
fi
|
|
23
|
+
|
|
24
|
+
# Check if VS Code repository is already added
|
|
25
|
+
if [ ! -f /etc/apt/sources.list.d/vscode.list ]; then
|
|
26
|
+
echo "📝 Adding VS Code repository to sources list..."
|
|
27
|
+
echo "deb [arch=amd64,arm64,armhf signed-by=/etc/apt/keyrings/packages.microsoft.gpg] https://packages.microsoft.com/repos/code stable main" | sudo tee /etc/apt/sources.list.d/vscode.list > /dev/null
|
|
28
|
+
else
|
|
29
|
+
echo "✅ VS Code repository already configured"
|
|
30
|
+
fi
|
|
31
|
+
|
|
32
|
+
echo """
|
|
33
|
+
#=======================================================================
|
|
34
|
+
📦 INSTALLING VS CODE | Updating and installing packages
|
|
35
|
+
#=======================================================================
|
|
36
|
+
"""
|
|
37
|
+
|
|
38
|
+
# Update package lists for VS Code repository only
|
|
39
|
+
echo "🔄 Updating package lists for VS Code repository..."
|
|
40
|
+
sudo nala update -o Dir::Etc::sourcelist="sources.list.d/vscode.list" -o Dir::Etc::sourceparts="-" -o APT::Get::List-Cleanup="0"
|
|
41
|
+
|
|
42
|
+
# Install VS Code
|
|
43
|
+
echo "📥 Installing Visual Studio Code..."
|
|
44
|
+
sudo nala install code -y
|
|
45
|
+
|
|
46
|
+
echo """
|
|
47
|
+
#=======================================================================
|
|
48
|
+
🔄 CHECKING FOR VS CODE INSIDERS | Updating if installed
|
|
49
|
+
#=======================================================================
|
|
50
|
+
"""
|
|
51
|
+
|
|
52
|
+
# Check if VS Code Insiders is installed and update if found
|
|
53
|
+
if command -v code-insiders >/dev/null 2>&1; then
|
|
54
|
+
echo "🔍 VS Code Insiders found, updating..."
|
|
55
|
+
sudo nala install code-insiders -y
|
|
56
|
+
else
|
|
57
|
+
echo "ℹ️ VS Code Insiders not installed, skipping"
|
|
58
|
+
fi
|
|
59
|
+
|
|
60
|
+
echo """
|
|
61
|
+
#=======================================================================
|
|
62
|
+
✅ INSTALLATION COMPLETE | VS Code has been installed successfully
|
|
63
|
+
#=======================================================================
|
|
64
|
+
"""
|
|
65
|
+
echo "🚀 You can now launch VS Code from your applications menu or by typing 'code' in terminal"
|
|
66
|
+
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
#!/usr/bin/bash
|
|
2
|
+
#=======================================================================
|
|
3
|
+
# 🔒 CLOUDFLARE WARP INSTALLATION SCRIPT 🔒
|
|
4
|
+
#=======================================================================
|
|
5
|
+
# This script installs Cloudflare WARP client on Ubuntu/Debian-based Linux distributions
|
|
6
|
+
# Reference: https://pkg.cloudflareclient.com/
|
|
7
|
+
|
|
8
|
+
echo """
|
|
9
|
+
#=======================================================================
|
|
10
|
+
🔍 DETECTING SYSTEM | Identifying OS distribution version
|
|
11
|
+
#=======================================================================
|
|
12
|
+
"""
|
|
13
|
+
|
|
14
|
+
get_ubuntu_base_version() {
|
|
15
|
+
local mint_codename=$(lsb_release -cs)
|
|
16
|
+
case "$mint_codename" in
|
|
17
|
+
"wilma")
|
|
18
|
+
echo "noble" # Mint 22 (wilma) is based on Ubuntu 24.04 (noble)
|
|
19
|
+
;;
|
|
20
|
+
"virginia") # Mint 21 (virginia) is based on Ubuntu 22.04 (jammy)
|
|
21
|
+
echo "jammy"
|
|
22
|
+
;;
|
|
23
|
+
*)
|
|
24
|
+
echo "$mint_codename"
|
|
25
|
+
;;
|
|
26
|
+
esac
|
|
27
|
+
}
|
|
28
|
+
ubuntu_version=$(get_ubuntu_base_version)
|
|
29
|
+
echo "📋 Detected distribution: $ubuntu_version"
|
|
30
|
+
|
|
31
|
+
echo """
|
|
32
|
+
#=======================================================================
|
|
33
|
+
🔑 ADDING REPOSITORY KEYS | Setting up Cloudflare repository
|
|
34
|
+
#=======================================================================
|
|
35
|
+
"""
|
|
36
|
+
|
|
37
|
+
# Add Cloudflare WARP GPG key
|
|
38
|
+
echo "🔐 Adding Cloudflare WARP GPG key..."
|
|
39
|
+
curl -fsSL https://pkg.cloudflareclient.com/pubkey.gpg | sudo gpg --yes --dearmor --output /usr/share/keyrings/cloudflare-warp-archive-keyring.gpg
|
|
40
|
+
|
|
41
|
+
# Add Cloudflare WARP repository
|
|
42
|
+
echo "📝 Adding Cloudflare WARP repository to sources list..."
|
|
43
|
+
echo "deb [signed-by=/usr/share/keyrings/cloudflare-warp-archive-keyring.gpg] https://pkg.cloudflareclient.com/ $ubuntu_version main" | sudo tee /etc/apt/sources.list.d/cloudflare-client.list
|
|
44
|
+
|
|
45
|
+
echo """
|
|
46
|
+
#=======================================================================
|
|
47
|
+
📦 INSTALLING CLOUDFLARE WARP | Updating and installing packages
|
|
48
|
+
#=======================================================================
|
|
49
|
+
"""
|
|
50
|
+
|
|
51
|
+
# Update package lists
|
|
52
|
+
echo "🔄 Updating package lists..."
|
|
53
|
+
sudo nala update
|
|
54
|
+
|
|
55
|
+
# Install Cloudflare WARP
|
|
56
|
+
echo "📥 Installing Cloudflare WARP..."
|
|
57
|
+
sudo nala install cloudflare-warp -y
|
|
58
|
+
|
|
59
|
+
echo """
|
|
60
|
+
#=======================================================================
|
|
61
|
+
🔧 REGISTERING WARP CLIENT | Setting up new registration
|
|
62
|
+
#=======================================================================
|
|
63
|
+
"""
|
|
64
|
+
|
|
65
|
+
# Register the WARP client
|
|
66
|
+
echo "📡 Registering WARP client..."
|
|
67
|
+
warp-cli registration new
|
|
68
|
+
|
|
69
|
+
echo """
|
|
70
|
+
#=======================================================================
|
|
71
|
+
✅ INSTALLATION COMPLETE | Cloudflare WARP has been installed successfully
|
|
72
|
+
#=======================================================================
|
|
73
|
+
"""
|
|
74
|
+
echo "🚀 To connect to WARP, run: warp-cli connect"
|
|
75
|
+
echo "🔄 To disconnect from WARP, run: warp-cli disconnect"
|
|
76
|
+
echo "ℹ️ To check connection status, run: warp-cli status"
|
|
77
|
+
echo "🔐 For more information, visit: https://developers.cloudflare.com/warp-client/get-started/linux/"
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
#!/bin/bash
|
|
2
|
+
#=======================================================================
|
|
3
|
+
# 🖥️ WEZTERM TERMINAL INSTALLATION SCRIPT 🖥️
|
|
4
|
+
#=======================================================================
|
|
5
|
+
# This script installs WezTerm terminal emulator on Ubuntu/Debian-based Linux distributions
|
|
6
|
+
# Reference: https://wezfurlong.org/wezterm/install/linux.html
|
|
7
|
+
|
|
8
|
+
echo """
|
|
9
|
+
#=======================================================================
|
|
10
|
+
🔑 ADDING REPOSITORY KEYS | Setting up WezTerm repository
|
|
11
|
+
#=======================================================================
|
|
12
|
+
"""
|
|
13
|
+
|
|
14
|
+
# Add WezTerm GPG key
|
|
15
|
+
echo "🔐 Adding WezTerm GPG key..."
|
|
16
|
+
curl -fsSL https://apt.fury.io/wez/gpg.key | sudo gpg --yes --dearmor -o /usr/share/keyrings/wezterm-fury.gpg
|
|
17
|
+
|
|
18
|
+
# Add WezTerm repository
|
|
19
|
+
echo "📝 Adding WezTerm repository to sources list..."
|
|
20
|
+
echo 'deb [signed-by=/usr/share/keyrings/wezterm-fury.gpg] https://apt.fury.io/wez/ * *' | sudo tee /etc/apt/sources.list.d/wezterm.list
|
|
21
|
+
|
|
22
|
+
echo """
|
|
23
|
+
#=======================================================================
|
|
24
|
+
📦 INSTALLING WEZTERM | Updating and installing packages
|
|
25
|
+
#=======================================================================
|
|
26
|
+
"""
|
|
27
|
+
|
|
28
|
+
# Update package lists
|
|
29
|
+
echo "🔄 Updating package lists..."
|
|
30
|
+
sudo nala update
|
|
31
|
+
|
|
32
|
+
# Install WezTerm
|
|
33
|
+
echo "📥 Installing WezTerm terminal emulator..."
|
|
34
|
+
sudo nala install wezterm -y
|
|
35
|
+
|
|
36
|
+
echo """
|
|
37
|
+
#=======================================================================
|
|
38
|
+
✅ INSTALLATION COMPLETE | WezTerm has been installed successfully
|
|
39
|
+
#=======================================================================
|
|
40
|
+
"""
|
|
41
|
+
echo "🚀 You can now launch WezTerm from your applications menu or by typing 'wezterm' in terminal"
|
|
42
|
+
echo "💡 Configure WezTerm by editing ~/.config/wezterm/wezterm.lua"
|
|
43
|
+
echo "🔗 For more information and configuration options, visit: https://wezfurlong.org/wezterm/"
|
|
@@ -0,0 +1,267 @@
|
|
|
1
|
+
{
|
|
2
|
+
"mcfly": {
|
|
3
|
+
"repo_url": "https://github.com/cantino/mcfly",
|
|
4
|
+
"doc": "🚀 Fly through your shell history. Great Scott!",
|
|
5
|
+
"filename_template_linux_amd_64": "mcfly-{}-x86_64-unknown-linux-musl.tar.gz",
|
|
6
|
+
"filename_template_windows_amd_64": "mcfly-{}-x86_64-pc-windows-msvc.zip",
|
|
7
|
+
"strip_v": false,
|
|
8
|
+
"exe_name": "mcfly"
|
|
9
|
+
},
|
|
10
|
+
"ttyd": {
|
|
11
|
+
"repo_url": "https://github.com/tsl0922/ttyd",
|
|
12
|
+
"doc": "🌐 ttyd shares your terminal on the web.",
|
|
13
|
+
"filename_template_windows_amd_64": "ttyd.win32.exe",
|
|
14
|
+
"filename_template_linux_amd_64": "ttyd.x86_64",
|
|
15
|
+
"strip_v": true,
|
|
16
|
+
"exe_name": "ttyd"
|
|
17
|
+
},
|
|
18
|
+
"m365": {
|
|
19
|
+
"repo_url": "npm install -g @pnp/cli-microsoft365",
|
|
20
|
+
"doc": "☁️ CLI for Microsoft 365",
|
|
21
|
+
"filename_template_windows_amd_64": "",
|
|
22
|
+
"filename_template_linux_amd_64": "",
|
|
23
|
+
"strip_v": false,
|
|
24
|
+
"exe_name": "m365"
|
|
25
|
+
},
|
|
26
|
+
"chatgpt": {
|
|
27
|
+
"repo_url": "https://github.com/j178/chatgpt",
|
|
28
|
+
"doc": "🤖 chagpt cli",
|
|
29
|
+
"filename_template_windows_amd_64": "chatgpt_Windows_x86_64.zip",
|
|
30
|
+
"filename_template_linux_amd_64": "chatgpt_Linux_x86_64.tar.gz",
|
|
31
|
+
"strip_v": true,
|
|
32
|
+
"exe_name": "chatgpt"
|
|
33
|
+
},
|
|
34
|
+
"mods": {
|
|
35
|
+
"repo_url": "https://github.com/charmbracelet/mods/",
|
|
36
|
+
"doc": "🤖 AI for the command line, built for pipelines",
|
|
37
|
+
"filename_template_windows_amd_64": "mods_{}_Windows_x86_64.zip",
|
|
38
|
+
"filename_template_linux_amd_64": "mods_{}_Linux_x86_64.tar.gz",
|
|
39
|
+
"strip_v": true,
|
|
40
|
+
"exe_name": "mods"
|
|
41
|
+
},
|
|
42
|
+
"glow": {
|
|
43
|
+
"repo_url": "https://github.com/charmbracelet/glow/",
|
|
44
|
+
"doc": "✨ Render markdown on the CLI, with pizzazz!",
|
|
45
|
+
"filename_template_windows_amd_64": "glow_{}_Windows_x86_64.zip",
|
|
46
|
+
"filename_template_linux_amd_64": "glow_{}_Linux_x86_64.tar.gz",
|
|
47
|
+
"strip_v": true,
|
|
48
|
+
"exe_name": "glow"
|
|
49
|
+
},
|
|
50
|
+
"gum": {
|
|
51
|
+
"repo_url": "https://github.com/charmbracelet/gum",
|
|
52
|
+
"doc": "🎯 Prompt user to select from options, written in golang.",
|
|
53
|
+
"filename_template_windows_amd_64": "gum_{}_Windows_x86_64.zip",
|
|
54
|
+
"filename_template_linux_amd_64": "gum_{}_Linux_x86_64.tar.gz",
|
|
55
|
+
"strip_v": true,
|
|
56
|
+
"exe_name": "gum"
|
|
57
|
+
},
|
|
58
|
+
"bat": {
|
|
59
|
+
"repo_url": "https://github.com/sharkdp/bat",
|
|
60
|
+
"doc": "🦇 A cat(1) clone with wings.",
|
|
61
|
+
"filename_template_windows_amd_64": "bat-{}-x86_64-pc-windows-msvc.zip",
|
|
62
|
+
"filename_template_linux_amd_64": "bat-{}-x86_64-unknown-linux-musl.tar.gz",
|
|
63
|
+
"strip_v": false,
|
|
64
|
+
"exe_name": "bat"
|
|
65
|
+
},
|
|
66
|
+
"starship": {
|
|
67
|
+
"repo_url": "https://github.com/starship/starship",
|
|
68
|
+
"doc": "🚀 a cross-platform prompt for your shell",
|
|
69
|
+
"filename_template_windows_amd_64": "starship-x86_64-pc-windows-msvc.zip",
|
|
70
|
+
"filename_template_linux_amd_64": "starship-x86_64-unknown-linux-musl.tar.gz",
|
|
71
|
+
"strip_v": false,
|
|
72
|
+
"exe_name": "starship"
|
|
73
|
+
},
|
|
74
|
+
"rg": {
|
|
75
|
+
"repo_url": "https://github.com/BurntSushi/ripgrep",
|
|
76
|
+
"doc": "🔍 recursively searches directories for a regex pattern while respecting your gitignore rules",
|
|
77
|
+
"filename_template_windows_amd_64": "ripgrep-{}-x86_64-pc-windows-msvc.zip",
|
|
78
|
+
"filename_template_linux_amd_64": "ripgrep-{}-x86_64-unknown-linux-musl.tar.gz",
|
|
79
|
+
"strip_v": true,
|
|
80
|
+
"exe_name": "rg"
|
|
81
|
+
},
|
|
82
|
+
"fzf": {
|
|
83
|
+
"repo_url": "https://github.com/junegunn/fzf",
|
|
84
|
+
"doc": "🔍 a general-purpose cli fuzzy finder.",
|
|
85
|
+
"filename_template_windows_amd_64": "fzf-{}-windows_amd64.zip",
|
|
86
|
+
"filename_template_linux_amd_64": "fzf-{}-linux_amd64.tar.gz",
|
|
87
|
+
"strip_v": true,
|
|
88
|
+
"exe_name": "fzf"
|
|
89
|
+
},
|
|
90
|
+
"fd": {
|
|
91
|
+
"repo_url": "https://github.com/sharkdp/fd",
|
|
92
|
+
"doc": "🔍 fd is a simple, fast and user-friendly alternative to find.",
|
|
93
|
+
"filename_template_windows_amd_64": "fd-{}-x86_64-pc-windows-msvc.zip",
|
|
94
|
+
"filename_template_linux_amd_64": "fd-{}-x86_64-unknown-linux-musl.tar.gz",
|
|
95
|
+
"strip_v": false,
|
|
96
|
+
"exe_name": "fd"
|
|
97
|
+
},
|
|
98
|
+
"broot": {
|
|
99
|
+
"repo_url": "https://github.com/Canop/broot",
|
|
100
|
+
"doc": "🌳 broot is an fzf variant for folder structure and layered search.",
|
|
101
|
+
"filename_template_windows_amd_64": "https://dystroy.org/broot/download/x86_64-pc-windows-gnu/broot.exe",
|
|
102
|
+
"filename_template_linux_amd_64": "https://dystroy.org/broot/download/x86_64-linux/broot",
|
|
103
|
+
"strip_v": false,
|
|
104
|
+
"exe_name": "broot"
|
|
105
|
+
},
|
|
106
|
+
"rga": {
|
|
107
|
+
"repo_url": "https://github.com/phiresky/ripgrep-all",
|
|
108
|
+
"doc": "🔍 ripgrep, but also search in PDFs, E-Books, Office documents, zip, tar.gz, etc.",
|
|
109
|
+
"filename_template_windows_amd_64": "ripgrep_all-{}-x86_64-pc-windows-msvc.zip",
|
|
110
|
+
"filename_template_linux_amd_64": "ripgrep_all-{}-x86_64-unknown-linux-musl.tar.gz",
|
|
111
|
+
"strip_v": false,
|
|
112
|
+
"exe_name": "rga"
|
|
113
|
+
},
|
|
114
|
+
"ouch": {
|
|
115
|
+
"repo_url": "https://github.com/ouch-org/ouch",
|
|
116
|
+
"doc": "📦 A cli for extracting and creating archives in unified way.",
|
|
117
|
+
"filename_template_windows_amd_64": "ouch-x86_64-pc-windows-msvc.zip",
|
|
118
|
+
"filename_template_linux_amd_64": "ouch-x86_64-unknown-linux-musl.tar.gz",
|
|
119
|
+
"strip_v": false,
|
|
120
|
+
"exe_name": "ouch"
|
|
121
|
+
},
|
|
122
|
+
"topgrade": {
|
|
123
|
+
"repo_url": "https://github.com/topgrade-rs/topgrade",
|
|
124
|
+
"doc": "⬆️ Keeping your system up to date usually involves invoking multiple package managers.",
|
|
125
|
+
"filename_template_linux_amd_64": "topgrade-{}-x86_64-unknown-linux-musl.tar.gz",
|
|
126
|
+
"filename_template_windows_amd_64": "topgrade-{}-x86_64-pc-windows-msvc.zip",
|
|
127
|
+
"strip_v": false,
|
|
128
|
+
"exe_name": "topgrade"
|
|
129
|
+
},
|
|
130
|
+
"viu": {
|
|
131
|
+
"repo_url": "https://github.com/atanunq/viu",
|
|
132
|
+
"doc": "🖼️ A cli image viewer for the terminal (like chafa but in Rust)",
|
|
133
|
+
"filename_template_linux_amd_64": "viu-x86_64-unknown-linux-musl",
|
|
134
|
+
"filename_template_windows_amd_64": "viu-x86_64-pc-windows-msvc.exe",
|
|
135
|
+
"strip_v": false,
|
|
136
|
+
"exe_name": "viu"
|
|
137
|
+
},
|
|
138
|
+
"btm": {
|
|
139
|
+
"repo_url": "https://github.com/ClementTsang/bottom",
|
|
140
|
+
"doc": "📊 bottom is a cross-platform graphical process/system monitor with a customizable interface and a multitude of features.",
|
|
141
|
+
"filename_template_linux_amd_64": "bottom_x86_64-unknown-linux-musl.tar.gz",
|
|
142
|
+
"filename_template_windows_amd_64": "bottom_x86_64-pc-windows-msvc.zip",
|
|
143
|
+
"strip_v": true,
|
|
144
|
+
"exe_name": "btm"
|
|
145
|
+
},
|
|
146
|
+
"cpufetch": {
|
|
147
|
+
"repo_url": "https://github.com/Dr-Noob/cpufetch",
|
|
148
|
+
"doc": "💻 cpufetch is a small yet fancy CPU architecture fetching tool, like fastfetch but for CPUs.",
|
|
149
|
+
"filename_template_windows_amd_64": "cpufetch_x86-64_windows.exe",
|
|
150
|
+
"filename_template_linux_amd_64": "cpufetch_x86_linux",
|
|
151
|
+
"strip_v": false,
|
|
152
|
+
"exe_name": "cpufetch"
|
|
153
|
+
},
|
|
154
|
+
"fastfetch": {
|
|
155
|
+
"repo_url": "https://github.com/fastfetch-cli/fastfetch",
|
|
156
|
+
"doc": "💻 fastfetch is a system information tool written in C.",
|
|
157
|
+
"filename_template_windows_amd_64": "fastfetch-windows-amd64.zip",
|
|
158
|
+
"filename_template_linux_amd_64": "fastfetch-linux-amd64.zip",
|
|
159
|
+
"strip_v": false,
|
|
160
|
+
"exe_name": "fastfetch"
|
|
161
|
+
},
|
|
162
|
+
"procs": {
|
|
163
|
+
"repo_url": "https://github.com/dalance/procs/",
|
|
164
|
+
"doc": "📊 procs is a modern replacement for ps written in Rust.",
|
|
165
|
+
"filename_template_windows_amd_64": "procs-{}-x86_64-windows.zip",
|
|
166
|
+
"filename_template_linux_amd_64": "procs-{}-x86_64-linux.zip",
|
|
167
|
+
"strip_v": false,
|
|
168
|
+
"exe_name": "procs"
|
|
169
|
+
},
|
|
170
|
+
"delta": {
|
|
171
|
+
"repo_url": "https://github.com/dandavison/delta",
|
|
172
|
+
"doc": "👀 A viewer for git and diff output",
|
|
173
|
+
"filename_template_windows_amd_64": "delta-{}-x86_64-pc-windows-msvc.zip",
|
|
174
|
+
"filename_template_linux_amd_64": "delta-{}-x86_64-unknown-linux-musl.tar.gz",
|
|
175
|
+
"strip_v": true,
|
|
176
|
+
"exe_name": "delta"
|
|
177
|
+
},
|
|
178
|
+
"gitui": {
|
|
179
|
+
"repo_url": "https://github.com/extrawurst/gitui",
|
|
180
|
+
"doc": "🐙 gitui is a terminal ui for git written in rust.",
|
|
181
|
+
"filename_template_windows_amd_64": "gitui-win.tar.gz",
|
|
182
|
+
"filename_template_linux_amd_64": "gitui-linux-x86_64.tar.gz",
|
|
183
|
+
"strip_v": false,
|
|
184
|
+
"exe_name": "gitui"
|
|
185
|
+
},
|
|
186
|
+
"opencommit": {
|
|
187
|
+
"repo_url": "npm install -g opencommit",
|
|
188
|
+
"doc": "📝 Opencommit is a cli tool to help you write better commit messages.",
|
|
189
|
+
"filename_template_windows_amd_64": "",
|
|
190
|
+
"filename_template_linux_amd_64": "",
|
|
191
|
+
"strip_v": false,
|
|
192
|
+
"exe_name": "opencommit"
|
|
193
|
+
},
|
|
194
|
+
"dua": {
|
|
195
|
+
"repo_url": "https://github.com/Byron/dua-cli",
|
|
196
|
+
"doc": "💾 Rust-based cli tool to get a quick overview of disk usage.",
|
|
197
|
+
"filename_template_windows_amd_64": "dua-{}-x86_64-pc-windows-msvc.zip",
|
|
198
|
+
"filename_template_linux_amd_64": "dua-{}-x86_64-unknown-linux-musl.tar.gz",
|
|
199
|
+
"strip_v": false,
|
|
200
|
+
"exe_name": "dua"
|
|
201
|
+
},
|
|
202
|
+
"lf": {
|
|
203
|
+
"repo_url": "https://github.com/gokcehan/lf",
|
|
204
|
+
"doc": "📂 lf is a terminal file manager written in go.",
|
|
205
|
+
"filename_template_windows_amd_64": "lf-windows-amd64.zip",
|
|
206
|
+
"filename_template_linux_amd_64": "lf-linux-amd64.tar.gz",
|
|
207
|
+
"strip_v": false,
|
|
208
|
+
"exe_name": "lf"
|
|
209
|
+
},
|
|
210
|
+
"yazi": {
|
|
211
|
+
"repo_url": "https://github.com/sxyazi/yazi",
|
|
212
|
+
"doc": "⚡️ Blazing Fast Terminal File Manager.",
|
|
213
|
+
"filename_template_windows_amd_64": "yazi-x86_64-pc-windows-msvc.zip",
|
|
214
|
+
"filename_template_linux_amd_64": "yazi-x86_64-unknown-linux-musl.zip",
|
|
215
|
+
"strip_v": false,
|
|
216
|
+
"exe_name": "yazi"
|
|
217
|
+
},
|
|
218
|
+
"tere": {
|
|
219
|
+
"repo_url": "https://github.com/mgunyho/tere",
|
|
220
|
+
"doc": "📂 Tere is a terminal file explorer written in Rust. No more ls + cd",
|
|
221
|
+
"filename_template_windows_amd_64": "tere-{}-x86_64-pc-windows-gnu.zip",
|
|
222
|
+
"filename_template_linux_amd_64": "tere-{}-x86_64-unknown-linux-gnu.zip",
|
|
223
|
+
"strip_v": true,
|
|
224
|
+
"exe_name": "tere"
|
|
225
|
+
},
|
|
226
|
+
"zoxide": {
|
|
227
|
+
"repo_url": "https://github.com/ajeetdsouza/zoxide",
|
|
228
|
+
"doc": "🚀 A cd command that learns - easily navigate directories from the command-line",
|
|
229
|
+
"filename_template_windows_amd_64": "zoxide-{}-x86_64-pc-windows-msvc.zip",
|
|
230
|
+
"filename_template_linux_amd_64": "zoxide-{}-x86_64-unknown-linux-musl.tar.gz",
|
|
231
|
+
"strip_v": true,
|
|
232
|
+
"exe_name": "zoxide"
|
|
233
|
+
},
|
|
234
|
+
|
|
235
|
+
"lsd": {
|
|
236
|
+
"repo_url": "https://github.com/lsd-rs/lsd",
|
|
237
|
+
"doc": "📂 lsd is a modern ls with a lot of pretty colors and font-awesome icons.",
|
|
238
|
+
"filename_template_windows_amd_64": "lsd-{}-x86_64-pc-windows-msvc.zip",
|
|
239
|
+
"filename_template_linux_amd_64": "lsd-{}-x86_64-unknown-linux-musl.tar.gz",
|
|
240
|
+
"strip_v": false,
|
|
241
|
+
"exe_name": "lsd"
|
|
242
|
+
},
|
|
243
|
+
"mprocs": {
|
|
244
|
+
"repo_url": "https://github.com/pvolok/mprocs",
|
|
245
|
+
"doc": "🖥️ Windows/Linux poorman's zellij",
|
|
246
|
+
"filename_template_windows_amd_64": "mprocs-{}-windows-x86_64.zip",
|
|
247
|
+
"filename_template_linux_amd_64": "mprocs-{}-linux-x86_64-musl.tar.gz",
|
|
248
|
+
"strip_v": true,
|
|
249
|
+
"exe_name": "mprocs"
|
|
250
|
+
},
|
|
251
|
+
"rclone": {
|
|
252
|
+
"repo_url": "https://github.com/rclone/rclone",
|
|
253
|
+
"doc": "☁️ cli to sync to cloud storage providers.",
|
|
254
|
+
"filename_template_windows_amd_64": "rclone-{}-windows-amd64.zip",
|
|
255
|
+
"filename_template_linux_amd_64": "rclone-{}-linux-amd64.zip",
|
|
256
|
+
"strip_v": false,
|
|
257
|
+
"exe_name": "rclone"
|
|
258
|
+
},
|
|
259
|
+
"watchexec": {
|
|
260
|
+
"repo_url": "https://github.com/watchexec/watchexec",
|
|
261
|
+
"doc": "👀 Executes commands in response to file modifications.",
|
|
262
|
+
"filename_template_windows_amd_64": "watchexec-{}-x86_64-pc-windows-msvc.zip",
|
|
263
|
+
"filename_template_linux_amd_64": "watchexec-{}-x86_64-unknown-linux-musl.tar.xz",
|
|
264
|
+
"strip_v": true,
|
|
265
|
+
"exe_name": "watchexec"
|
|
266
|
+
}
|
|
267
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
{
|
|
2
|
+
"frpc": {
|
|
3
|
+
"repo_url": "https://github.com/fatedier/frp",
|
|
4
|
+
"doc": "fast reverse proxy (CLIENT) that allows you to expose a local server located behind a NAT or firewall to the Internet.",
|
|
5
|
+
"filename_template_windows_amd_64": "frp_{}_windows_amd64.zip",
|
|
6
|
+
"filename_template_linux_amd_64": "frp_{}_linux_amd64.tar.gz",
|
|
7
|
+
"strip_v": true,
|
|
8
|
+
"exe_name": "frpc"
|
|
9
|
+
},
|
|
10
|
+
"frps": {
|
|
11
|
+
"repo_url": "https://github.com/fatedier/frp",
|
|
12
|
+
"doc": "fast reverse proxy (SERVER) that allows you to expose a local server located behind a NAT or firewall to the Internet.",
|
|
13
|
+
"filename_template_windows_amd_64": "frp_{}_windows_amd64.zip",
|
|
14
|
+
"filename_template_linux_amd_64": "frp_{}_linux_amd64.tar.gz",
|
|
15
|
+
"strip_v": true,
|
|
16
|
+
"exe_name": "frps"
|
|
17
|
+
}
|
|
18
|
+
}
|