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,64 @@
|
|
|
1
|
+
"""VScode task to set interpreter
|
|
2
|
+
"""
|
|
3
|
+
|
|
4
|
+
# import os
|
|
5
|
+
# import json
|
|
6
|
+
from crocodile.file_management import P as Path # , Read, Save
|
|
7
|
+
import argparse
|
|
8
|
+
# import platform
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
def select_interpreter(workspace_root: str):
|
|
12
|
+
print(f"""
|
|
13
|
+
{'=' * 70}
|
|
14
|
+
đ VSCODE VE LINKER | Linking virtual environment for VS Code
|
|
15
|
+
đ Workspace: {workspace_root}
|
|
16
|
+
{'=' * 70}
|
|
17
|
+
""")
|
|
18
|
+
|
|
19
|
+
path = Path(workspace_root).joinpath('.ve_path')
|
|
20
|
+
|
|
21
|
+
if not path.exists():
|
|
22
|
+
print(f"""
|
|
23
|
+
{'â ī¸' * 20}
|
|
24
|
+
â ERROR | Could not find .ve_path file in workspace
|
|
25
|
+
đ Expected at: {path}
|
|
26
|
+
{'â ī¸' * 20}
|
|
27
|
+
""")
|
|
28
|
+
return
|
|
29
|
+
|
|
30
|
+
with open(path, 'r', encoding='utf-8') as f:
|
|
31
|
+
ve_path = Path(f.read().strip().replace("~", str(Path.home())))
|
|
32
|
+
|
|
33
|
+
venv_link = Path(workspace_root).joinpath(".venv")
|
|
34
|
+
|
|
35
|
+
if venv_link.exists() and not venv_link.is_symlink():
|
|
36
|
+
print(f"""
|
|
37
|
+
{'â ī¸' * 20}
|
|
38
|
+
â ERROR | .venv already exists and is not a symlink
|
|
39
|
+
đ Path: {venv_link}
|
|
40
|
+
{'â ī¸' * 20}
|
|
41
|
+
""")
|
|
42
|
+
return
|
|
43
|
+
|
|
44
|
+
venv_link.symlink_to(target=ve_path.expanduser().absolute())
|
|
45
|
+
|
|
46
|
+
print(f"""
|
|
47
|
+
{'=' * 70}
|
|
48
|
+
â
SUCCESS | Virtual environment linked successfully
|
|
49
|
+
đ Link: {venv_link}
|
|
50
|
+
đ¯ Target: {ve_path.expanduser().absolute()}
|
|
51
|
+
{'=' * 70}
|
|
52
|
+
""")
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
def main():
|
|
56
|
+
parser = argparse.ArgumentParser(description='Link ve from repo to ve location.')
|
|
57
|
+
parser.add_argument('workspace_path', type=str, help='The workspace path')
|
|
58
|
+
|
|
59
|
+
args = parser.parse_args()
|
|
60
|
+
select_interpreter(args.workspace_path)
|
|
61
|
+
|
|
62
|
+
|
|
63
|
+
if __name__ == "__main__":
|
|
64
|
+
main()
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
"""VScode task to set interpreter
|
|
2
|
+
"""
|
|
3
|
+
|
|
4
|
+
# import os
|
|
5
|
+
# import json
|
|
6
|
+
from crocodile.file_management import P as Path, Read, Save
|
|
7
|
+
import argparse
|
|
8
|
+
import platform
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
def select_interpreter(workspace_root: str):
|
|
12
|
+
print(f"""
|
|
13
|
+
{'=' * 70}
|
|
14
|
+
đ PYTHON INTERPRETER | Setting up VS Code Python interpreter
|
|
15
|
+
đ Workspace: {workspace_root}
|
|
16
|
+
{'=' * 70}
|
|
17
|
+
""")
|
|
18
|
+
|
|
19
|
+
path = Path(workspace_root).joinpath('.ve_path')
|
|
20
|
+
if not path.exists():
|
|
21
|
+
print(f"""
|
|
22
|
+
{'â ī¸' * 20}
|
|
23
|
+
â ERROR | Could not find .ve_path file in workspace
|
|
24
|
+
đ Expected at: {path}
|
|
25
|
+
{'â ī¸' * 20}
|
|
26
|
+
""")
|
|
27
|
+
return
|
|
28
|
+
|
|
29
|
+
with open(path, 'r', encoding='utf-8') as f:
|
|
30
|
+
python_path = Path(f.read().strip().replace("~", str(Path.home())))
|
|
31
|
+
|
|
32
|
+
print(f"đ Virtual environment path: {python_path}")
|
|
33
|
+
|
|
34
|
+
if platform.system() == 'Windows':
|
|
35
|
+
python_path = python_path.joinpath('Scripts', 'python.exe')
|
|
36
|
+
elif platform.system() == 'Linux':
|
|
37
|
+
python_path = python_path.joinpath('bin', 'python')
|
|
38
|
+
elif platform.system() == 'Darwin':
|
|
39
|
+
python_path = python_path.joinpath('bin', 'python')
|
|
40
|
+
else:
|
|
41
|
+
error_msg = f"Unsupported platform: {platform.system()}"
|
|
42
|
+
print(f"""
|
|
43
|
+
{'â ī¸' * 20}
|
|
44
|
+
â ERROR | {error_msg}
|
|
45
|
+
{'â ī¸' * 20}
|
|
46
|
+
""")
|
|
47
|
+
raise NotImplementedError(error_msg)
|
|
48
|
+
|
|
49
|
+
print(f"đ Python interpreter path: {python_path}")
|
|
50
|
+
|
|
51
|
+
# tmp = os.getenv('APPDATA')
|
|
52
|
+
# assert tmp is not None
|
|
53
|
+
# settings_path = Path(tmp).joinpath('Code', 'User', 'settings.json')
|
|
54
|
+
work_space_settings = Path(workspace_root).joinpath('.vscode', 'settings.json').create(parents_only=True)
|
|
55
|
+
if not work_space_settings.exists():
|
|
56
|
+
print(f"đ Creating new settings file: {work_space_settings}")
|
|
57
|
+
work_space_settings.touch()
|
|
58
|
+
work_space_settings.write_text("{}")
|
|
59
|
+
else:
|
|
60
|
+
print(f"đ Updating existing settings file: {work_space_settings}")
|
|
61
|
+
|
|
62
|
+
settings = Read.json(work_space_settings)
|
|
63
|
+
settings['python.defaultInterpreterPath'] = str(python_path)
|
|
64
|
+
Save.json(obj=settings, path=work_space_settings, indent=4)
|
|
65
|
+
|
|
66
|
+
print(f"""
|
|
67
|
+
{'=' * 70}
|
|
68
|
+
â
SUCCESS | Python interpreter configured successfully
|
|
69
|
+
đ Interpreter: {python_path}
|
|
70
|
+
đ Settings: {work_space_settings}
|
|
71
|
+
{'=' * 70}
|
|
72
|
+
""")
|
|
73
|
+
|
|
74
|
+
|
|
75
|
+
def main():
|
|
76
|
+
parser = argparse.ArgumentParser(description='Set Python Interpretor in VSCode settings.')
|
|
77
|
+
parser.add_argument('workspace_path', type=str, help='The workspace path')
|
|
78
|
+
|
|
79
|
+
args = parser.parse_args()
|
|
80
|
+
select_interpreter(args.workspace_path)
|
|
81
|
+
|
|
82
|
+
|
|
83
|
+
if __name__ == "__main__":
|
|
84
|
+
main()
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
from crocodile.core import Read
|
|
2
|
+
from pathlib import Path
|
|
3
|
+
|
|
4
|
+
config = Read.ini(Path.home().joinpath(".ssh", "config"))
|
|
5
|
+
if config is None:
|
|
6
|
+
raise ValueError("â SSH config not found. Please create one first.")
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
def sync_remote(machine_name: str):
|
|
10
|
+
print(f"""
|
|
11
|
+
{'=' * 70}
|
|
12
|
+
đ SYNC REMOTE | Initiating remote code synchronization
|
|
13
|
+
đĨī¸ Target machine: {machine_name}
|
|
14
|
+
{'=' * 70}
|
|
15
|
+
""")
|
|
16
|
+
|
|
17
|
+
machine_config = config.get(machine_name)
|
|
18
|
+
if machine_config is None:
|
|
19
|
+
error_msg = f"Machine {machine_name} not found in SSH config."
|
|
20
|
+
print(f"""
|
|
21
|
+
{'â ī¸' * 20}
|
|
22
|
+
â ERROR | {error_msg}
|
|
23
|
+
{'â ī¸' * 20}
|
|
24
|
+
""")
|
|
25
|
+
raise ValueError(error_msg)
|
|
26
|
+
|
|
27
|
+
# this is template: code = """ssh -o "HostName=zgeby8zhe6ipftpad.alexsaffar.com" -o "User=alex" -o "ProxyCommand=cloudflared access ssh --hostname %h" -o "Port=443" -o "RequestTTY=yes" -o "RemoteCommand=bash ~/scripts/z_ls --attach; bash" tpadCF"""
|
|
28
|
+
code = f"""
|
|
29
|
+
ssh -o "HostName={machine_config['HostName']}" -o "User={machine_config['User']}" -o "ProxyCommand=cloudflared access ssh --hostname %h" -o "Port={machine_config['Port']}" -o "RequestTTY=yes" -o "RemoteCommand=devops --which update; bash" {machine_name}
|
|
30
|
+
"""
|
|
31
|
+
from rich.console import Console
|
|
32
|
+
from rich.syntax import Syntax
|
|
33
|
+
from rich.panel import Panel
|
|
34
|
+
|
|
35
|
+
console = Console()
|
|
36
|
+
console.print(f"\n{'=' * 70}")
|
|
37
|
+
console.print(Panel(
|
|
38
|
+
Syntax(code, lexer="bash"),
|
|
39
|
+
title=f"đ SYNC COMMAND | Connecting to {machine_name}",
|
|
40
|
+
subtitle=f"đ Host: {machine_config['HostName']}"
|
|
41
|
+
), style="bold blue")
|
|
42
|
+
console.print(f"{'=' * 70}\n")
|
|
43
|
+
|
|
44
|
+
code_path = Path.home().joinpath(".config", "machingconfig", "vscode_api", "code_temp")
|
|
45
|
+
code_path.parent.mkdir(parents=True, exist_ok=True)
|
|
46
|
+
code_path.write_text(code, encoding="utf-8")
|
|
47
|
+
code_path.chmod(0o755)
|
|
48
|
+
|
|
49
|
+
print(f"đ Executing sync command for {machine_name}...")
|
|
50
|
+
|
|
51
|
+
import subprocess
|
|
52
|
+
subprocess.run([str(code_path)], shell=True, check=True)
|
|
53
|
+
|
|
54
|
+
print(f"""
|
|
55
|
+
{'=' * 70}
|
|
56
|
+
â
SUCCESS | Remote sync completed successfully
|
|
57
|
+
đĨī¸ Machine: {machine_name}
|
|
58
|
+
{'=' * 70}
|
|
59
|
+
""")
|
|
60
|
+
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
"""ngrok
|
|
2
|
+
|
|
3
|
+
flagged as virus by 35% of antivirus engines
|
|
4
|
+
"""
|
|
5
|
+
|
|
6
|
+
import platform
|
|
7
|
+
from typing import Optional
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
config_dict = {
|
|
11
|
+
"repo_url": "CUSTOM",
|
|
12
|
+
"doc": "ngrok secure introspectable tunnels to localhost",
|
|
13
|
+
"filename_template_windows_amd_64": "ngrok-stable-windows-amd64.zip",
|
|
14
|
+
"filename_template_linux_amd_64": "ngrok-stable-linux-amd64.zip",
|
|
15
|
+
"strip_v": False,
|
|
16
|
+
"exe_name": "ngrok"
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
def main(version: Optional[str]):
|
|
21
|
+
print(f"""
|
|
22
|
+
{'=' * 70}
|
|
23
|
+
đ NGROK INSTALLER | Setting up secure tunnels to localhost
|
|
24
|
+
đģ Platform: {platform.system()}
|
|
25
|
+
{'=' * 70}
|
|
26
|
+
""")
|
|
27
|
+
|
|
28
|
+
_ = version
|
|
29
|
+
if platform.system() == "Windows":
|
|
30
|
+
print("đĒ Installing ngrok using winget on Windows...")
|
|
31
|
+
program = "winget install ngrok.ngrok --source winget"
|
|
32
|
+
elif platform.system() == "Linux":
|
|
33
|
+
print("đ§ Installing ngrok using apt/nala on Linux...")
|
|
34
|
+
# as per https://ngrok.com/docs/getting-started/?os=linux
|
|
35
|
+
program = """
|
|
36
|
+
|
|
37
|
+
curl -s https://ngrok-agent.s3.amazonaws.com/ngrok.asc | \
|
|
38
|
+
sudo tee /etc/apt/trusted.gpg.d/ngrok.asc >/dev/null && \
|
|
39
|
+
echo "deb https://ngrok-agent.s3.amazonaws.com buster main" | \
|
|
40
|
+
sudo tee /etc/apt/sources.list.d/ngrok.list && \
|
|
41
|
+
sudo nala update && sudo nala install ngrok
|
|
42
|
+
"""
|
|
43
|
+
else:
|
|
44
|
+
error_msg = f"Unsupported platform: {platform.system()}"
|
|
45
|
+
print(f"""
|
|
46
|
+
{'â ī¸' * 20}
|
|
47
|
+
â ERROR | {error_msg}
|
|
48
|
+
{'â ī¸' * 20}
|
|
49
|
+
""")
|
|
50
|
+
raise NotImplementedError(error_msg)
|
|
51
|
+
|
|
52
|
+
print(f"""
|
|
53
|
+
{'=' * 70}
|
|
54
|
+
â ī¸ SECURITY WARNING | ngrok has been flagged by some antivirus engines
|
|
55
|
+
đĄī¸ Use at your own risk - flagged by 35% of antivirus engines
|
|
56
|
+
{'=' * 70}
|
|
57
|
+
""")
|
|
58
|
+
return program
|
|
59
|
+
|
|
60
|
+
|
|
61
|
+
if __name__ == "__main__":
|
|
62
|
+
pass
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
from typing import Optional
|
|
2
|
+
import platform
|
|
3
|
+
|
|
4
|
+
config_dict = {
|
|
5
|
+
"repo_url": "CUSTOM",
|
|
6
|
+
"doc": "Aider Chat",
|
|
7
|
+
"filename_template_windows_amd_64": "aider-chat-{}.exe",
|
|
8
|
+
"filename_template_linux_amd_64": "aider-chat-{}.deb",
|
|
9
|
+
"strip_v": True,
|
|
10
|
+
"exe_name": "aider-chat"
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
def main(version: Optional[str] = None):
|
|
15
|
+
print(f"""
|
|
16
|
+
{'=' * 70}
|
|
17
|
+
đ¤ AIDER INSTALLER | Installing AI code assistant
|
|
18
|
+
đģ Platform: {platform.system()}
|
|
19
|
+
đ Version: {'latest' if version is None else version}
|
|
20
|
+
{'=' * 70}
|
|
21
|
+
""")
|
|
22
|
+
|
|
23
|
+
install_script = "uv tool install --force --python python3.12 aider-chat@latest"
|
|
24
|
+
|
|
25
|
+
print(f"""
|
|
26
|
+
{'=' * 70}
|
|
27
|
+
â
SUCCESS | Installation command prepared:
|
|
28
|
+
đ Command: {install_script}
|
|
29
|
+
{'=' * 70}
|
|
30
|
+
""")
|
|
31
|
+
|
|
32
|
+
return install_script
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
if __name__ == '__main__':
|
|
36
|
+
pass
|
|
37
|
+
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
"""alacritty
|
|
2
|
+
"""
|
|
3
|
+
|
|
4
|
+
import platform
|
|
5
|
+
from typing import Optional
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
config_dict = {
|
|
9
|
+
"repo_url": "CUSTOM",
|
|
10
|
+
"doc": "Terminal Console",
|
|
11
|
+
"filename_template_windows_amd_64": "",
|
|
12
|
+
"filename_template_linux_amd_64": "",
|
|
13
|
+
"strip_v": False,
|
|
14
|
+
"exe_name": "alacritty"
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
def main(version: Optional[str]):
|
|
19
|
+
print(f"""
|
|
20
|
+
{'=' * 70}
|
|
21
|
+
đĨī¸ ALACRITTY INSTALLER | Installing GPU-accelerated terminal emulator
|
|
22
|
+
đģ Platform: {platform.system()}
|
|
23
|
+
đ Version: {'latest' if version is None else version}
|
|
24
|
+
{'=' * 70}
|
|
25
|
+
""")
|
|
26
|
+
|
|
27
|
+
_ = version
|
|
28
|
+
if platform.system() == "Windows":
|
|
29
|
+
print("đĒ Installing Alacritty on Windows using Cargo...")
|
|
30
|
+
program = """
|
|
31
|
+
|
|
32
|
+
cargo install alacritty
|
|
33
|
+
mkdir -p ~/.config/alacritty/themes
|
|
34
|
+
git clone https://github.com/alacritty/alacritty-theme ~/.config/alacritty/themes
|
|
35
|
+
|
|
36
|
+
"""
|
|
37
|
+
elif platform.system() == "Linux":
|
|
38
|
+
print("đ§ Installing Alacritty on Linux using Cargo...")
|
|
39
|
+
program = """
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
cargo install alacritty
|
|
43
|
+
mkdir -p ~/.config/alacritty/themes
|
|
44
|
+
git clone https://github.com/alacritty/alacritty-theme ~/.config/alacritty/themes
|
|
45
|
+
|
|
46
|
+
"""
|
|
47
|
+
else:
|
|
48
|
+
error_msg = f"Unsupported platform: {platform.system()}"
|
|
49
|
+
print(f"""
|
|
50
|
+
{'â ī¸' * 20}
|
|
51
|
+
â ERROR | {error_msg}
|
|
52
|
+
{'â ī¸' * 20}
|
|
53
|
+
""")
|
|
54
|
+
raise NotImplementedError(error_msg)
|
|
55
|
+
|
|
56
|
+
print(f"""
|
|
57
|
+
{'=' * 70}
|
|
58
|
+
âšī¸ INFO | Installation will proceed with the following steps:
|
|
59
|
+
1ī¸âŖ Install Alacritty using Cargo
|
|
60
|
+
2ī¸âŖ Create config directories
|
|
61
|
+
3ī¸âŖ Clone theme repository
|
|
62
|
+
{'=' * 70}
|
|
63
|
+
""")
|
|
64
|
+
|
|
65
|
+
# _res = Terminal(stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE).run_script(script=program, shell="default").print(desc="Running custom installer", capture=True)
|
|
66
|
+
# run script here as it requires user input
|
|
67
|
+
return program
|
|
68
|
+
|
|
69
|
+
|
|
70
|
+
if __name__ == "__main__":
|
|
71
|
+
pass
|
|
72
|
+
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
"""brave installer
|
|
2
|
+
"""
|
|
3
|
+
|
|
4
|
+
import platform
|
|
5
|
+
from typing import Optional
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
config_dict = {
|
|
9
|
+
"repo_url": "CUSTOM",
|
|
10
|
+
"doc": "Chrome with no ads",
|
|
11
|
+
"filename_template_windows_amd_64": "",
|
|
12
|
+
"filename_template_linux_amd_64": "",
|
|
13
|
+
"strip_v": False,
|
|
14
|
+
"exe_name": "brave"
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
def main(version: Optional[str]):
|
|
20
|
+
print(f"""
|
|
21
|
+
{'=' * 70}
|
|
22
|
+
đĻ BRAVE BROWSER | Installing privacy-focused web browser
|
|
23
|
+
đģ Platform: {platform.system()}
|
|
24
|
+
đ Version: {'latest' if version is None else version}
|
|
25
|
+
{'=' * 70}
|
|
26
|
+
""")
|
|
27
|
+
|
|
28
|
+
_ = version
|
|
29
|
+
if platform.system() == "Windows":
|
|
30
|
+
print("đĒ Installing Brave Browser on Windows using winget...")
|
|
31
|
+
program = """
|
|
32
|
+
|
|
33
|
+
winget install --Name "Brave Browser" --Id Brave.Brave --source winget --accept-package-agreements --accept-source-agreements
|
|
34
|
+
|
|
35
|
+
"""
|
|
36
|
+
elif platform.system() == "Linux":
|
|
37
|
+
print("đ§ Installing Brave Browser on Linux using installation script...")
|
|
38
|
+
import machineconfig.jobs.python_custom_installers as module
|
|
39
|
+
from pathlib import Path
|
|
40
|
+
program = Path(module.__file__).parent.joinpath("scripts/linux/brave.sh").read_text(encoding="utf-8")
|
|
41
|
+
else:
|
|
42
|
+
error_msg = f"Unsupported platform: {platform.system()}"
|
|
43
|
+
print(f"""
|
|
44
|
+
{'â ī¸' * 20}
|
|
45
|
+
â ERROR | {error_msg}
|
|
46
|
+
{'â ī¸' * 20}
|
|
47
|
+
""")
|
|
48
|
+
raise NotImplementedError(error_msg)
|
|
49
|
+
|
|
50
|
+
print(f"""
|
|
51
|
+
{'=' * 70}
|
|
52
|
+
âšī¸ INFO | Brave Browser features:
|
|
53
|
+
đ Built-in ad blocking
|
|
54
|
+
đĄī¸ Privacy-focused browsing
|
|
55
|
+
đ¨ Faster page loading
|
|
56
|
+
đĒ Optional crypto rewards
|
|
57
|
+
{'=' * 70}
|
|
58
|
+
""")
|
|
59
|
+
|
|
60
|
+
# _res = Terminal(stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE).run_script(script=program, shell="default").print(desc="Running custom installer", capture=True)
|
|
61
|
+
# run script here as it requires user input
|
|
62
|
+
return program
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
if __name__ == "__main__":
|
|
66
|
+
pass
|
|
67
|
+
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
# import numpy as np
|
|
2
|
+
# import matplotlib.pyplot as plt
|
|
3
|
+
|
|
4
|
+
# from platform import system
|
|
5
|
+
from typing import Optional
|
|
6
|
+
from crocodile.file_management import P
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
config_dict = {
|
|
10
|
+
"repo_url": "CUSTOM",
|
|
11
|
+
"doc": """Plugin for chrome to bypass paywalls""",
|
|
12
|
+
"filename_template_windows_amd_64": "VSCodeSetup-{}.exe",
|
|
13
|
+
"filename_template_linux_amd_64": "code_{}.deb",
|
|
14
|
+
"strip_v": True,
|
|
15
|
+
"exe_name": "pluginName"
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
def main(version: Optional[str] = None):
|
|
20
|
+
print(f"""
|
|
21
|
+
{'=' * 70}
|
|
22
|
+
đ BYPASS PAYWALL | Installing paywall bypass extension for Chrome
|
|
23
|
+
đ Version: {'latest' if version is None else version}
|
|
24
|
+
{'=' * 70}
|
|
25
|
+
""")
|
|
26
|
+
|
|
27
|
+
_ = version
|
|
28
|
+
# see remove paywalls and enhance YT experience by Chris Titus
|
|
29
|
+
folder = r"C:\\"
|
|
30
|
+
|
|
31
|
+
print("đĨ Downloading extension from GitHub repository...")
|
|
32
|
+
P("https://github.com/iamadamdev/bypass-paywalls-chrome/archive/master.zip").download().unzip(folder=folder, content=True)
|
|
33
|
+
extension_folder = P(folder).joinpath("bypass-paywalls-chrome-master")
|
|
34
|
+
|
|
35
|
+
print(f"""
|
|
36
|
+
{'=' * 70}
|
|
37
|
+
â
SUCCESS | Extension downloaded successfully
|
|
38
|
+
đ Location: {extension_folder}
|
|
39
|
+
âšī¸ Next steps:
|
|
40
|
+
1ī¸âŖ Open Chrome and navigate to chrome://extensions
|
|
41
|
+
2ī¸âŖ Enable Developer Mode (toggle in top right)
|
|
42
|
+
3ī¸âŖ Click "Load unpacked" and select the extension folder
|
|
43
|
+
{'=' * 70}
|
|
44
|
+
""")
|
|
45
|
+
|
|
46
|
+
return ""
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
if __name__ == '__main__':
|
|
50
|
+
pass
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
"""vs code installer as per https://code.visualstudio.com/docs/setup/linux
|
|
2
|
+
"""
|
|
3
|
+
|
|
4
|
+
from typing import Optional
|
|
5
|
+
import platform
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
config_dict = {
|
|
9
|
+
"repo_url": "CUSTOM",
|
|
10
|
+
"doc": "Visual Studio Code",
|
|
11
|
+
"filename_template_windows_amd_64": "VSCodeSetup-{}.exe",
|
|
12
|
+
"filename_template_linux_amd_64": "code_{}.deb",
|
|
13
|
+
"strip_v": True,
|
|
14
|
+
"exe_name": "code"
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
def main(version: Optional[str] = None):
|
|
19
|
+
print(f"""
|
|
20
|
+
{'=' * 70}
|
|
21
|
+
đģ VS CODE INSTALLER | Setting up Visual Studio Code
|
|
22
|
+
đĨī¸ Platform: {platform.system()}
|
|
23
|
+
đ Version: {'latest' if version is None else version}
|
|
24
|
+
{'=' * 70}
|
|
25
|
+
""")
|
|
26
|
+
|
|
27
|
+
if platform.system() == 'Linux':
|
|
28
|
+
print("đ§ Installing VS Code on Linux using official script...")
|
|
29
|
+
import machineconfig.jobs.python_custom_installers as module
|
|
30
|
+
from pathlib import Path
|
|
31
|
+
install_script = Path(module.__file__).parent.joinpath("scripts/linux/vscode.sh").read_text(encoding="utf-8")
|
|
32
|
+
|
|
33
|
+
elif platform.system() == 'Windows':
|
|
34
|
+
print("đĒ Installing VS Code on Windows using winget...")
|
|
35
|
+
install_script = """winget install --no-upgrade --name "Microsoft Visual Studio Code" --Id "Microsoft.VisualStudioCode" --source winget --scope user --accept-package-agreements --accept-source-agreements"""
|
|
36
|
+
else:
|
|
37
|
+
error_msg = f"Unsupported platform: {platform.system()}"
|
|
38
|
+
print(f"""
|
|
39
|
+
{'â ī¸' * 20}
|
|
40
|
+
â ERROR | {error_msg}
|
|
41
|
+
{'â ī¸' * 20}
|
|
42
|
+
""")
|
|
43
|
+
raise NotImplementedError(error_msg)
|
|
44
|
+
|
|
45
|
+
_ = version
|
|
46
|
+
|
|
47
|
+
print(f"""
|
|
48
|
+
{'=' * 70}
|
|
49
|
+
âšī¸ INFO | VS Code features:
|
|
50
|
+
đ Powerful code editor with IntelliSense
|
|
51
|
+
đ§Š Thousands of extensions available
|
|
52
|
+
đ Integrated debugging
|
|
53
|
+
đ Git integration
|
|
54
|
+
âī¸ Highly customizable
|
|
55
|
+
{'=' * 70}
|
|
56
|
+
""")
|
|
57
|
+
|
|
58
|
+
return install_script
|
|
59
|
+
|
|
60
|
+
|
|
61
|
+
if __name__ == '__main__':
|
|
62
|
+
pass
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
|
|
2
|
+
|
|
3
|
+
import os
|
|
4
|
+
import shutil
|
|
5
|
+
from pathlib import Path
|
|
6
|
+
import platform
|
|
7
|
+
from typing import Optional
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
config_dict = {
|
|
11
|
+
"repo_url": "CUSTOM",
|
|
12
|
+
"doc": "Cursor",
|
|
13
|
+
"filename_template_windows_amd_64": "VSCodeSetup-{}.exe",
|
|
14
|
+
"filename_template_linux_amd_64": "code_{}.deb",
|
|
15
|
+
"strip_v": True,
|
|
16
|
+
"exe_name": "cursor"
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
def main(version: Optional[str] = None):
|
|
21
|
+
_ = version
|
|
22
|
+
assert platform.system() == "Linux", "This script is intended for Linux systems only."
|
|
23
|
+
# assert flvour is debiean/mint or ubuntu, "This script is intended for Debian-based systems only."
|
|
24
|
+
# Variables
|
|
25
|
+
# username = os.getenv("USER")
|
|
26
|
+
home = str(Path.home())
|
|
27
|
+
# appimage_src = f"{home}/Downloads/Cursor-0.48.8-x86_64.AppImage"
|
|
28
|
+
# search for anything that has Cursor in the name and ends with .AppImage
|
|
29
|
+
appimage_src = next(Path(home).joinpath("Downloads").glob("**/Cursor*.AppImage"), None)
|
|
30
|
+
if appimage_src is None:
|
|
31
|
+
raise FileNotFoundError("Cursor AppImage not found in Downloads folder.")
|
|
32
|
+
else:
|
|
33
|
+
print(f"Cursor AppImage found: {appimage_src}")
|
|
34
|
+
appimage_dest = f"{home}/.local/bin/cursor"
|
|
35
|
+
desktop_file = f"{home}/.local/share/applications/cursor.desktop"
|
|
36
|
+
icon_path = f"{home}/.local/share/icons/cursor.png" # Optional: set only if icon exists
|
|
37
|
+
|
|
38
|
+
# Step 1: Move AppImage
|
|
39
|
+
os.makedirs(f"{home}/.local/bin", exist_ok=True)
|
|
40
|
+
if not os.path.exists(appimage_dest):
|
|
41
|
+
shutil.move(appimage_src, appimage_dest)
|
|
42
|
+
os.chmod(appimage_dest, 0o755)
|
|
43
|
+
|
|
44
|
+
# Step 2: Create .desktop file
|
|
45
|
+
os.makedirs(f"{home}/.local/share/applications", exist_ok=True)
|
|
46
|
+
icon_line = f"Icon={icon_path}" if os.path.exists(icon_path) else "Icon=cursor"
|
|
47
|
+
|
|
48
|
+
desktop_content = f"""[Desktop Entry]
|
|
49
|
+
Name=Cursor
|
|
50
|
+
Comment=Code editor based on VSCode
|
|
51
|
+
Exec={appimage_dest}
|
|
52
|
+
{icon_line}
|
|
53
|
+
Terminal=false
|
|
54
|
+
Type=Application
|
|
55
|
+
Categories=Development;IDE;
|
|
56
|
+
"""
|
|
57
|
+
with open(desktop_file, "w") as f:
|
|
58
|
+
f.write(desktop_content)
|
|
59
|
+
# Step 3: Make the .desktop file executable
|
|
60
|
+
os.chmod(desktop_file, 0o755)
|
|
61
|
+
# Step 4: Update desktop database (optional, usually not needed)
|
|
62
|
+
os.system(f"update-desktop-database {home}/.local/share/applications")
|
|
63
|
+
print("Cursor is now available from the start menu.")
|
|
64
|
+
|
|
65
|
+
|
|
66
|
+
if __name__ == "__main__":
|
|
67
|
+
main()
|