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,53 @@
|
|
|
1
|
+
#!/usr/bin/bash
|
|
2
|
+
#=======================================================================
|
|
3
|
+
# 🌐 WEB SHORTCUTS MASTER SCRIPT
|
|
4
|
+
#=======================================================================
|
|
5
|
+
# This script provides quick access to installation scripts via web
|
|
6
|
+
|
|
7
|
+
echo """
|
|
8
|
+
#=======================================================================
|
|
9
|
+
📚 AVAILABLE INSTALLATION OPTIONS | Web-based installers
|
|
10
|
+
#=======================================================================
|
|
11
|
+
|
|
12
|
+
Choose from the following installation options:
|
|
13
|
+
"""
|
|
14
|
+
|
|
15
|
+
echo """
|
|
16
|
+
#=======================================================================
|
|
17
|
+
📦 SYSTEM APPLICATIONS | Basic system applications
|
|
18
|
+
#=======================================================================
|
|
19
|
+
|
|
20
|
+
# To install system applications, run:
|
|
21
|
+
# curl https://raw.githubusercontent.com/thisismygitrepo/machineconfig/main/src/machineconfig/setup_linux/apps.sh | bash
|
|
22
|
+
"""
|
|
23
|
+
|
|
24
|
+
echo """
|
|
25
|
+
#=======================================================================
|
|
26
|
+
🐍 PYTHON ENVIRONMENT | Virtual environment setup
|
|
27
|
+
#=======================================================================
|
|
28
|
+
|
|
29
|
+
Setting up Python virtual environment...
|
|
30
|
+
"""
|
|
31
|
+
curl https://raw.githubusercontent.com/thisismygitrepo/machineconfig/main/src/machineconfig/setup_linux/ve.sh | bash
|
|
32
|
+
|
|
33
|
+
echo """
|
|
34
|
+
#=======================================================================
|
|
35
|
+
🔄 CODE REPOSITORIES | Cloning project repositories
|
|
36
|
+
#=======================================================================
|
|
37
|
+
|
|
38
|
+
Setting up code repositories...
|
|
39
|
+
"""
|
|
40
|
+
curl https://raw.githubusercontent.com/thisismygitrepo/machineconfig/main/src/machineconfig/setup_linux/repos.sh | bash
|
|
41
|
+
|
|
42
|
+
echo """
|
|
43
|
+
#=======================================================================
|
|
44
|
+
⚙️ DEVELOPMENT TOOLS | Developer applications
|
|
45
|
+
#=======================================================================
|
|
46
|
+
|
|
47
|
+
# To install development applications, run:
|
|
48
|
+
# source <(sudo cat ~/code/machineconfig/src/machineconfig/setup_linux/devapps.sh)
|
|
49
|
+
|
|
50
|
+
#=======================================================================
|
|
51
|
+
✅ INSTALLATION COMPLETE | Basic environment setup finished
|
|
52
|
+
#=======================================================================
|
|
53
|
+
"""
|
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
#!/usr/bin/bash
|
|
2
|
+
#=======================================================================
|
|
3
|
+
# 🎨 ASCII ART TOOLS INSTALLATION SCRIPT
|
|
4
|
+
#=======================================================================
|
|
5
|
+
# This script installs various ASCII art and text formatting tools
|
|
6
|
+
|
|
7
|
+
echo """
|
|
8
|
+
#=======================================================================
|
|
9
|
+
🖼️ ASCII ART TOOLS | Installing terminal visualization packages
|
|
10
|
+
#=======================================================================
|
|
11
|
+
"""
|
|
12
|
+
|
|
13
|
+
# Alternate Nix installation method (commented reference)
|
|
14
|
+
# if [ -f "$HOME/.nix-profile/bin/nix-env" ]; then
|
|
15
|
+
# echo """
|
|
16
|
+
# #=======================================================================
|
|
17
|
+
# 📦 NIX PACKAGE INSTALLATION | Using Nix package manager
|
|
18
|
+
# #=======================================================================
|
|
19
|
+
# """
|
|
20
|
+
# ~/.nix-profile/bin/nix-env -iA nixpkgs.cowsay || true
|
|
21
|
+
# ~/.nix-profile/bin/nix-env -iA nixpkgs.lolcat || true
|
|
22
|
+
# ~/.nix-profile/bin/nix-env -iA nixpkgs.boxes || true
|
|
23
|
+
# ~/.nix-profile/bin/nix-env -iA nixpkgs.figlet || true
|
|
24
|
+
# else
|
|
25
|
+
|
|
26
|
+
# Check if cowsay is installed, if not install it
|
|
27
|
+
if [ ! -f "/usr/games/cowsay" ]; then
|
|
28
|
+
echo """
|
|
29
|
+
#=======================================================================
|
|
30
|
+
🐮 INSTALLING COWSAY | ASCII art animals with speech bubbles
|
|
31
|
+
#=======================================================================
|
|
32
|
+
|
|
33
|
+
📋 Usage examples:
|
|
34
|
+
$ cowsay "Hello World"
|
|
35
|
+
$ cowsay -l (to list available figures)
|
|
36
|
+
$ cowsay -f tux "Linux rocks!"
|
|
37
|
+
"""
|
|
38
|
+
sudo nala install cowsay -y || true
|
|
39
|
+
fi
|
|
40
|
+
|
|
41
|
+
# Check if lolcat is installed, if not install it
|
|
42
|
+
if [ ! -f "/usr/games/lolcat" ]; then
|
|
43
|
+
echo """
|
|
44
|
+
#=======================================================================
|
|
45
|
+
🌈 INSTALLING LOLCAT | Rainbow text colorizer for terminal
|
|
46
|
+
#=======================================================================
|
|
47
|
+
|
|
48
|
+
📋 Usage examples:
|
|
49
|
+
$ echo "Hello World" | lolcat
|
|
50
|
+
$ cowsay "Rainbow cow" | lolcat
|
|
51
|
+
"""
|
|
52
|
+
sudo nala install lolcat -y || true
|
|
53
|
+
fi
|
|
54
|
+
|
|
55
|
+
# Check if boxes is installed, if not install it
|
|
56
|
+
if [ ! -f "/usr/bin/boxes" ]; then
|
|
57
|
+
echo """
|
|
58
|
+
#=======================================================================
|
|
59
|
+
📦 INSTALLING BOXES | ASCII art box drawing around text
|
|
60
|
+
#=======================================================================
|
|
61
|
+
|
|
62
|
+
📋 Usage examples:
|
|
63
|
+
$ echo "Hello World" | boxes
|
|
64
|
+
$ echo "Custom box" | boxes -d stone
|
|
65
|
+
$ boxes -l (to list available box styles)
|
|
66
|
+
"""
|
|
67
|
+
sudo nala install boxes -y || true
|
|
68
|
+
fi
|
|
69
|
+
|
|
70
|
+
# Check if figlet is installed, if not install it
|
|
71
|
+
if [ ! -f "/usr/bin/figlet" ]; then
|
|
72
|
+
echo """
|
|
73
|
+
#=======================================================================
|
|
74
|
+
📝 INSTALLING FIGLET | Large ASCII text generator
|
|
75
|
+
#=======================================================================
|
|
76
|
+
|
|
77
|
+
📋 Usage examples:
|
|
78
|
+
$ figlet "Hello World"
|
|
79
|
+
$ showfigfonts (to view available fonts)
|
|
80
|
+
$ figlet -f slant "Custom font"
|
|
81
|
+
"""
|
|
82
|
+
sudo nala install figlet -y || true
|
|
83
|
+
fi
|
|
84
|
+
|
|
85
|
+
echo """
|
|
86
|
+
#=======================================================================
|
|
87
|
+
✅ INSTALLATION COMPLETE | All ASCII art tools installed successfully
|
|
88
|
+
#=======================================================================
|
|
89
|
+
|
|
90
|
+
🎨 Installed tools:
|
|
91
|
+
✓ cowsay - ASCII art animals with text
|
|
92
|
+
✓ lolcat - Rainbow text colorizer
|
|
93
|
+
✓ boxes - Text in ASCII art boxes
|
|
94
|
+
✓ figlet - Large ASCII text generator
|
|
95
|
+
|
|
96
|
+
💡 Try combining them:
|
|
97
|
+
$ figlet "Cool text" | boxes | lolcat
|
|
98
|
+
$ cowsay -f tux "Linux" | lolcat
|
|
99
|
+
"""
|
|
100
|
+
# fi
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
#!/usr/bin/bash
|
|
2
|
+
#=======================================================================
|
|
3
|
+
# 🐊 CROCODILE SHELL SETUP SCRIPT
|
|
4
|
+
#=======================================================================
|
|
5
|
+
# This script sets up the crocodile shell environment with all dependencies
|
|
6
|
+
|
|
7
|
+
echo """
|
|
8
|
+
#=======================================================================
|
|
9
|
+
🚀 ENVIRONMENT SETUP | Quick installation via URL shorteners
|
|
10
|
+
#=======================================================================
|
|
11
|
+
"""
|
|
12
|
+
|
|
13
|
+
echo """
|
|
14
|
+
#=======================================================================
|
|
15
|
+
🐍 PYTHON ENVIRONMENT | Setting up Python virtual environment
|
|
16
|
+
#=======================================================================
|
|
17
|
+
|
|
18
|
+
Setting up Python virtual environment via bit.ly shortlink...
|
|
19
|
+
"""
|
|
20
|
+
# Alternative URL: curl https://raw.githubusercontent.com/thisismygitrepo/machineconfig/main/src/machineconfig/setup_linux/ve.sh | bash
|
|
21
|
+
curl bit.ly/cfgvelinux -L | bash
|
|
22
|
+
|
|
23
|
+
echo """
|
|
24
|
+
#=======================================================================
|
|
25
|
+
📦 CODE REPOSITORIES | Cloning project repositories
|
|
26
|
+
#=======================================================================
|
|
27
|
+
|
|
28
|
+
Cloning essential repositories via bit.ly shortlink...
|
|
29
|
+
"""
|
|
30
|
+
# Alternative URL: curl https://raw.githubusercontent.com/thisismygitrepo/machineconfig/main/src/machineconfig/setup_linux/repos.sh | bash
|
|
31
|
+
curl bit.ly/cfgreposlinux -L | bash
|
|
32
|
+
|
|
33
|
+
echo """
|
|
34
|
+
#=======================================================================
|
|
35
|
+
🔗 CONFIGURATION SETUP | Creating symbolic links
|
|
36
|
+
#=======================================================================
|
|
37
|
+
|
|
38
|
+
Setting up configuration symlinks...
|
|
39
|
+
Note: This may require sudo permissions for .ssh permissions
|
|
40
|
+
"""
|
|
41
|
+
source $HOME/code/machineconfig/src/machineconfig/setup_linux/symlinks.sh
|
|
42
|
+
|
|
43
|
+
echo """
|
|
44
|
+
#=======================================================================
|
|
45
|
+
🔄 SHELL RELOADING | Refreshing shell configuration
|
|
46
|
+
#=======================================================================
|
|
47
|
+
|
|
48
|
+
Reloading bash configuration...
|
|
49
|
+
"""
|
|
50
|
+
. ~/.bashrc
|
|
51
|
+
|
|
52
|
+
echo """
|
|
53
|
+
#=======================================================================
|
|
54
|
+
⚙️ DEVELOPMENT TOOLS | Developer applications
|
|
55
|
+
#=======================================================================
|
|
56
|
+
|
|
57
|
+
# To install development applications, run:
|
|
58
|
+
# source <(sudo cat ~/code/machineconfig/src/machineconfig/setup_linux/devapps.sh)
|
|
59
|
+
|
|
60
|
+
#=======================================================================
|
|
61
|
+
✅ SETUP COMPLETE | CroShell environment setup finished
|
|
62
|
+
#=======================================================================
|
|
63
|
+
|
|
64
|
+
🚀 Your CroShell development environment is ready to use!
|
|
65
|
+
"""
|
|
66
|
+
|
|
@@ -0,0 +1,241 @@
|
|
|
1
|
+
#!/bin/bash
|
|
2
|
+
|
|
3
|
+
echo """
|
|
4
|
+
#=======================================================================
|
|
5
|
+
📦 MACHINE CONFIGURATION | Interactive Installation Script
|
|
6
|
+
#=======================================================================
|
|
7
|
+
"""
|
|
8
|
+
|
|
9
|
+
read -p "📥 Install Apps [y]/n? " choice
|
|
10
|
+
|
|
11
|
+
if [[ "$choice" == "y" || "$choice" == "Y" ]]; then
|
|
12
|
+
echo """
|
|
13
|
+
#=======================================================================
|
|
14
|
+
📦 APPLICATIONS | Installing base system applications
|
|
15
|
+
#=======================================================================
|
|
16
|
+
"""
|
|
17
|
+
curl https://raw.githubusercontent.com/thisismygitrepo/machineconfig/main/src/machineconfig/setup_linux/apps.sh | bash
|
|
18
|
+
else
|
|
19
|
+
echo """
|
|
20
|
+
⏭️ Skipping applications installation
|
|
21
|
+
"""
|
|
22
|
+
fi
|
|
23
|
+
|
|
24
|
+
echo """
|
|
25
|
+
#=======================================================================
|
|
26
|
+
🔄 SYSTEM UPDATE | Package management
|
|
27
|
+
#=======================================================================
|
|
28
|
+
"""
|
|
29
|
+
read -p "🔄 Upgrade system packages [y]/n? " choice
|
|
30
|
+
|
|
31
|
+
if [[ "$choice" == "y" || "$choice" == "Y" ]]; then
|
|
32
|
+
echo """
|
|
33
|
+
📦 Upgrading system packages...
|
|
34
|
+
"""
|
|
35
|
+
sudo nala upgrade -y
|
|
36
|
+
else
|
|
37
|
+
echo """
|
|
38
|
+
⏭️ Skipping system upgrade
|
|
39
|
+
"""
|
|
40
|
+
fi
|
|
41
|
+
|
|
42
|
+
echo """
|
|
43
|
+
#=======================================================================
|
|
44
|
+
🐍 PYTHON ENVIRONMENT | Virtual environment setup
|
|
45
|
+
#=======================================================================
|
|
46
|
+
"""
|
|
47
|
+
read -p "🐍 Install Python virtual environment 've' [y]/n? " choice
|
|
48
|
+
export ve_name="ve"
|
|
49
|
+
if [[ "$choice" == "y" || "$choice" == "Y" ]]; then
|
|
50
|
+
echo """
|
|
51
|
+
🔧 Setting up Python environment...
|
|
52
|
+
"""
|
|
53
|
+
curl https://raw.githubusercontent.com/thisismygitrepo/machineconfig/main/src/machineconfig/setup_linux/ve.sh | bash
|
|
54
|
+
curl https://raw.githubusercontent.com/thisismygitrepo/machineconfig/main/src/machineconfig/setup_linux/repos.sh | bash
|
|
55
|
+
else
|
|
56
|
+
echo """
|
|
57
|
+
⏭️ Skipping virtual environment setup
|
|
58
|
+
"""
|
|
59
|
+
fi
|
|
60
|
+
|
|
61
|
+
echo """
|
|
62
|
+
#=======================================================================
|
|
63
|
+
🔒 SSH SERVER | Remote access setup
|
|
64
|
+
#=======================================================================
|
|
65
|
+
"""
|
|
66
|
+
read -p "🔒 Install SSH Server [y]/n? " choice
|
|
67
|
+
choice=${choice:-y}
|
|
68
|
+
if [[ "$choice" == "y" || "$choice" == "Y" ]]; then
|
|
69
|
+
echo """
|
|
70
|
+
🔧 Installing SSH server...
|
|
71
|
+
"""
|
|
72
|
+
sudo nala install openssh-server -y
|
|
73
|
+
else
|
|
74
|
+
echo """
|
|
75
|
+
⏭️ Skipping SSH server installation
|
|
76
|
+
"""
|
|
77
|
+
fi
|
|
78
|
+
|
|
79
|
+
echo """
|
|
80
|
+
#=======================================================================
|
|
81
|
+
📂 DOTFILES MIGRATION | Configuration transfer options
|
|
82
|
+
#=======================================================================
|
|
83
|
+
|
|
84
|
+
🖱️ Method 1: USING MOUSE WITHOUT KB OR BROWSER SHARE
|
|
85
|
+
On original machine, run:
|
|
86
|
+
cd ~/dotfiles/creds/msc
|
|
87
|
+
easy-sharing . --password rew --username al
|
|
88
|
+
Then open brave on new machine to get MouseWithoutBorders password
|
|
89
|
+
|
|
90
|
+
🔐 Method 2: USING SSH
|
|
91
|
+
FROM REMOTE, RUN:
|
|
92
|
+
fptx ~/dotfiles \$USER@\$(hostname):^ -z
|
|
93
|
+
|
|
94
|
+
☁️ Method 3: USING INTERNET SECURE SHARE
|
|
95
|
+
cd ~
|
|
96
|
+
cloud_copy SHARE_URL . --config ss
|
|
97
|
+
(requires symlinks to be created first)
|
|
98
|
+
"""
|
|
99
|
+
|
|
100
|
+
echo """
|
|
101
|
+
#=======================================================================
|
|
102
|
+
📂 DOTFILES STATUS | Configuration files check
|
|
103
|
+
#=======================================================================
|
|
104
|
+
"""
|
|
105
|
+
read -p "📂 Have you finished copying dotfiles? [y]/n? " choice
|
|
106
|
+
|
|
107
|
+
echo """
|
|
108
|
+
#=======================================================================
|
|
109
|
+
🔗 SYMLINK CREATION | Configuration setup
|
|
110
|
+
#=======================================================================
|
|
111
|
+
"""
|
|
112
|
+
read -p "🔗 Create Symlinks (finish dotfiles transfer first) [y]/n? " choice
|
|
113
|
+
choice=${choice:-y}
|
|
114
|
+
if [[ "$choice" == "y" || "$choice" == "Y" ]]; then
|
|
115
|
+
echo """
|
|
116
|
+
🔧 Creating symlinks and setting permissions...
|
|
117
|
+
"""
|
|
118
|
+
source $HOME/venvs/ve/bin/activate
|
|
119
|
+
python -m fire machineconfig.profile.create main --choice=all
|
|
120
|
+
sudo chmod 600 $HOME/.ssh/*
|
|
121
|
+
sudo chmod 700 $HOME/.ssh
|
|
122
|
+
else
|
|
123
|
+
echo """
|
|
124
|
+
⏭️ Skipping symlink creation
|
|
125
|
+
"""
|
|
126
|
+
fi
|
|
127
|
+
|
|
128
|
+
echo """
|
|
129
|
+
#=======================================================================
|
|
130
|
+
⚡ CLI APPLICATIONS | Command-line tools installation
|
|
131
|
+
#=======================================================================
|
|
132
|
+
"""
|
|
133
|
+
read -p "⚡ Install CLI Apps [y]/n? " choice
|
|
134
|
+
choice=${choice:-y}
|
|
135
|
+
if [[ "$choice" == "y" || "$choice" == "Y" ]]; then
|
|
136
|
+
echo """
|
|
137
|
+
🔧 Installing CLI applications...
|
|
138
|
+
"""
|
|
139
|
+
. $HOME/venvs/ve/bin/activate
|
|
140
|
+
python -m fire machineconfig.scripts.python.devops_devapps_install main --which=AllEssentials
|
|
141
|
+
. $HOME/.bashrc
|
|
142
|
+
else
|
|
143
|
+
echo """
|
|
144
|
+
⏭️ Skipping CLI apps installation
|
|
145
|
+
"""
|
|
146
|
+
fi
|
|
147
|
+
|
|
148
|
+
echo """
|
|
149
|
+
#=======================================================================
|
|
150
|
+
🛠️ DEVELOPMENT TOOLS | Software development packages
|
|
151
|
+
#=======================================================================
|
|
152
|
+
"""
|
|
153
|
+
read -p "🛠️ Install Development Tools [y]/n? " choice
|
|
154
|
+
choice=${choice:-y}
|
|
155
|
+
if [[ "$choice" == "y" || "$choice" == "Y" ]]; then
|
|
156
|
+
echo """
|
|
157
|
+
🔧 Installing development tools...
|
|
158
|
+
"""
|
|
159
|
+
. $HOME/venvs/ve/bin/activate
|
|
160
|
+
(curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh) || true
|
|
161
|
+
sudo nala install libssl-dev -y
|
|
162
|
+
sudo nala install ffmpeg -y
|
|
163
|
+
python -m fire machineconfig.scripts.python.devops_devapps_install main --which=wezterm,brave,code,docker,warp-cli
|
|
164
|
+
else
|
|
165
|
+
echo """
|
|
166
|
+
⏭️ Skipping development tools installation
|
|
167
|
+
"""
|
|
168
|
+
fi
|
|
169
|
+
|
|
170
|
+
echo """
|
|
171
|
+
#=======================================================================
|
|
172
|
+
📚 REPOSITORIES | Project code retrieval
|
|
173
|
+
#=======================================================================
|
|
174
|
+
"""
|
|
175
|
+
read -p "📚 Retrieve Repositories to ~/code [y]/n? " choice
|
|
176
|
+
choice=${choice:-y}
|
|
177
|
+
if [[ "$choice" == "y" || "$choice" == "Y" ]]; then
|
|
178
|
+
echo """
|
|
179
|
+
🔄 Cloning repositories...
|
|
180
|
+
"""
|
|
181
|
+
repos ~/code --clone --cloud odg1
|
|
182
|
+
else
|
|
183
|
+
echo """
|
|
184
|
+
⏭️ Skipping repository retrieval
|
|
185
|
+
"""
|
|
186
|
+
fi
|
|
187
|
+
|
|
188
|
+
echo """
|
|
189
|
+
#=======================================================================
|
|
190
|
+
💾 DATA RETRIEVAL | Backup restoration
|
|
191
|
+
#=======================================================================
|
|
192
|
+
"""
|
|
193
|
+
read -p "💾 Retrieve Data [y]/n? " choice
|
|
194
|
+
choice=${choice:-y}
|
|
195
|
+
if [[ "$choice" == "y" || "$choice" == "Y" ]]; then
|
|
196
|
+
echo """
|
|
197
|
+
🔄 Retrieving data...
|
|
198
|
+
"""
|
|
199
|
+
. $HOME/venvs/ve/bin/activate
|
|
200
|
+
python -m fire machineconfig.scripts.python.devops_backup_retrieve main --direction=RETRIEVE
|
|
201
|
+
else
|
|
202
|
+
echo """
|
|
203
|
+
⏭️ Skipping data retrieval
|
|
204
|
+
"""
|
|
205
|
+
fi
|
|
206
|
+
|
|
207
|
+
echo """
|
|
208
|
+
#=======================================================================
|
|
209
|
+
🎨 ASCII ART | Terminal visualization tools
|
|
210
|
+
#=======================================================================
|
|
211
|
+
"""
|
|
212
|
+
read -p "🎨 Install ASCII Art Libraries [y]/n? " choice
|
|
213
|
+
choice=${choice:-y}
|
|
214
|
+
if [[ "$choice" == "y" || "$choice" == "Y" ]]; then
|
|
215
|
+
echo """
|
|
216
|
+
🎨 Installing ASCII art libraries...
|
|
217
|
+
"""
|
|
218
|
+
curl bit.ly/cfgasciiartlinux -L | sudo bash
|
|
219
|
+
else
|
|
220
|
+
echo """
|
|
221
|
+
⏭️ Skipping ASCII art installation
|
|
222
|
+
"""
|
|
223
|
+
fi
|
|
224
|
+
|
|
225
|
+
# echo """
|
|
226
|
+
# 📧 Thunderbird Setup Note:
|
|
227
|
+
# Run after installing Thunderbird and starting it once:
|
|
228
|
+
# cd ~/AppData/Roaming/ThunderBird/Profiles
|
|
229
|
+
# \$res = ls
|
|
230
|
+
# \$name = \$res[0].Name
|
|
231
|
+
# mv \$backup_folder \$name
|
|
232
|
+
# """
|
|
233
|
+
|
|
234
|
+
echo """
|
|
235
|
+
#=======================================================================
|
|
236
|
+
✨ INSTALLATION COMPLETE | System setup finished successfully
|
|
237
|
+
#=======================================================================
|
|
238
|
+
|
|
239
|
+
🎉 Your system has been configured successfully!
|
|
240
|
+
🔄 You may need to reboot to apply all changes.
|
|
241
|
+
"""
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
#!/usr/bin/bash
|
|
2
|
+
#=======================================================================
|
|
3
|
+
# 🔒 SSH SERVER SETUP SCRIPT
|
|
4
|
+
#=======================================================================
|
|
5
|
+
# This script sets up SSH server with public key authentication
|
|
6
|
+
|
|
7
|
+
echo """
|
|
8
|
+
#=======================================================================
|
|
9
|
+
🔑 SSH KEY SETUP | Configuring SSH public key authentication
|
|
10
|
+
#=======================================================================
|
|
11
|
+
"""
|
|
12
|
+
|
|
13
|
+
if [ -z "$pubkey_url" ]; then
|
|
14
|
+
echo """
|
|
15
|
+
🔍 No public key URL specified, using default GitHub URL
|
|
16
|
+
🔗 URL: https://github.com/thisismygitrepo.keys
|
|
17
|
+
"""
|
|
18
|
+
pubkey_url='https://github.com/thisismygitrepo.keys' # (CHANGE APPROPRIATELY)
|
|
19
|
+
fi
|
|
20
|
+
|
|
21
|
+
if [ -z "$pubkey_string" ]; then
|
|
22
|
+
echo """
|
|
23
|
+
📥 Fetching public key from URL...
|
|
24
|
+
"""
|
|
25
|
+
export pubkey_string=$(curl --silent $pubkey_url)
|
|
26
|
+
fi
|
|
27
|
+
|
|
28
|
+
echo """
|
|
29
|
+
#=======================================================================
|
|
30
|
+
🛠️ SSH SERVER INSTALLATION | Standard SSH setup
|
|
31
|
+
#=======================================================================
|
|
32
|
+
|
|
33
|
+
Setting up OpenSSH server...
|
|
34
|
+
"""
|
|
35
|
+
curl https://raw.githubusercontent.com/thisismygitrepo/machineconfig/main/src/machineconfig/setup_linux/openssh_all.sh | sudo bash
|
|
36
|
+
|
|
37
|
+
echo """
|
|
38
|
+
#=======================================================================
|
|
39
|
+
🔄 WSL CONFIGURATION | Additional WSL-specific setup
|
|
40
|
+
#=======================================================================
|
|
41
|
+
"""
|
|
42
|
+
|
|
43
|
+
# For WSL only, also run the following:
|
|
44
|
+
if [ -z "$port" ]; then
|
|
45
|
+
echo """
|
|
46
|
+
🔌 No port specified, using default port 2222
|
|
47
|
+
"""
|
|
48
|
+
export port=2222
|
|
49
|
+
fi
|
|
50
|
+
|
|
51
|
+
echo """
|
|
52
|
+
📡 Setting up WSL-specific SSH configuration on port $port...
|
|
53
|
+
"""
|
|
54
|
+
curl https://raw.githubusercontent.com/thisismygitrepo/machineconfig/main/src/machineconfig/setup_linux/openssh_wsl.sh | sudo bash
|
|
55
|
+
|
|
56
|
+
echo """
|
|
57
|
+
#=======================================================================
|
|
58
|
+
✅ SETUP COMPLETE | SSH server configured successfully
|
|
59
|
+
#=======================================================================
|
|
60
|
+
|
|
61
|
+
🔒 SSH server is now ready to use
|
|
62
|
+
🔑 Authorized key has been configured
|
|
63
|
+
🔌 For WSL: Server configured to run on port $port
|
|
64
|
+
"""
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
#!/usr/bin/bash
|
|
2
|
+
#=======================================================================
|
|
3
|
+
# 🔄 SYSTEM UPDATE SCRIPT
|
|
4
|
+
#=======================================================================
|
|
5
|
+
# This script provides methods to update Ubuntu system and kernel
|
|
6
|
+
|
|
7
|
+
echo """
|
|
8
|
+
#=======================================================================
|
|
9
|
+
🔄 SYSTEM UPGRADE OPTIONS | Ubuntu system maintenance
|
|
10
|
+
#=======================================================================
|
|
11
|
+
"""
|
|
12
|
+
|
|
13
|
+
echo """
|
|
14
|
+
#=======================================================================
|
|
15
|
+
📦 UBUNTU DISTRIBUTION UPGRADE | Full system version upgrade
|
|
16
|
+
#=======================================================================
|
|
17
|
+
|
|
18
|
+
⚠️ This will upgrade Ubuntu to the next available release
|
|
19
|
+
Edit /etc/update-manager/release-upgrades to configure upgrade behavior
|
|
20
|
+
"""
|
|
21
|
+
# Uncomment the line below to actually run the upgrade
|
|
22
|
+
# do-release-upgrade
|
|
23
|
+
|
|
24
|
+
echo """
|
|
25
|
+
#=======================================================================
|
|
26
|
+
🔧 KERNEL UPDATE | Installing the latest Linux kernel
|
|
27
|
+
#=======================================================================
|
|
28
|
+
|
|
29
|
+
📥 Downloading Ubuntu mainline kernel installation script...
|
|
30
|
+
"""
|
|
31
|
+
wget https://raw.githubusercontent.com/pimlie/ubuntu-mainline-kernel.sh/master/ubuntu-mainline-kernel.sh
|
|
32
|
+
|
|
33
|
+
echo """
|
|
34
|
+
🛠️ Installing script to system path...
|
|
35
|
+
"""
|
|
36
|
+
sudo install ubuntu-mainline-kernel.sh /usr/local/bin/
|
|
37
|
+
|
|
38
|
+
echo """
|
|
39
|
+
🔍 Checking available kernel versions...
|
|
40
|
+
"""
|
|
41
|
+
sudo ubuntu-mainline-kernel.sh -c
|
|
42
|
+
|
|
43
|
+
echo """
|
|
44
|
+
⏳ Installing the latest kernel (this may take several minutes)...
|
|
45
|
+
"""
|
|
46
|
+
sudo ubuntu-mainline-kernel.sh -i -y
|
|
47
|
+
|
|
48
|
+
echo """
|
|
49
|
+
#=======================================================================
|
|
50
|
+
✅ UPDATE COMPLETE | System upgrade finished
|
|
51
|
+
#=======================================================================
|
|
52
|
+
|
|
53
|
+
⚠️ IMPORTANT: A system reboot is required to use the new kernel
|
|
54
|
+
To reboot now, run: sudo reboot
|
|
55
|
+
"""
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
|
|
2
|
+
# as per https://docs.docker.com/desktop/install/windows-install/
|
|
3
|
+
mkdir ~/tmp_results/tmp_installers/docker
|
|
4
|
+
cd ~/tmp_results/tmp_installers/docker
|
|
5
|
+
|
|
6
|
+
curl "https://desktop.docker.com/win/main/amd64/Docker Desktop Installer.exe" --output installer.exe
|
|
7
|
+
Start-Process .\installer.exe -Wait install --accept-license
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
|
|
2
|
+
# apps
|
|
3
|
+
# Invoke-WebRequest https://raw.githubusercontent.com/thisismygitrepo/machineconfig/main/src/machineconfig/setup_windows/apps.ps1 | Invoke-Expression
|
|
4
|
+
# virtual enviornment
|
|
5
|
+
# Invoke-WebRequest https://raw.githubusercontent.com/thisismygitrepo/machineconfig/main/src/machineconfig/setup_windows/ve.ps1 | Invoke-Expression
|
|
6
|
+
(iwr bit.ly/cfgvewindows).Content | iex
|
|
7
|
+
|
|
8
|
+
# pwsh profile
|
|
9
|
+
$machineconfig = (& "$HOME\venvs\ve\Scripts\python.exe" -c "print(__import__('machineconfig').__file__[:-12])")
|
|
10
|
+
# . $machineconfig/setup_windows/wt_and_pwsh.ps1 # experimental
|
|
11
|
+
# OR: python -c "from machineconfig.setup_windows.wt_and_pwsh.setup_pwsh_theme import install_nerd_fonts; install_nerd_fonts()"
|
|
12
|
+
|
|
13
|
+
# & "$HOME\venvs\ve\Scripts\activate.ps1"
|
|
14
|
+
# python -m fire machineconfig.profile.create_hardlinks main --choice=all
|
|
15
|
+
# deactivate
|
|
16
|
+
|
|
17
|
+
# devapps:
|
|
18
|
+
. "$machineconfig\setup_windows\devapps.ps1"
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
|
|
2
|
+
|
|
3
|
+
# below, check if npm is installed @ C:\Program Files\nodejs\npm
|
|
4
|
+
if (Test-Path -Path "C:\Program Files\nodejs\npm") {
|
|
5
|
+
Write-Output "npm already installed ✅"
|
|
6
|
+
} else {
|
|
7
|
+
winget install --Id CoreyButler.NVMforWindows --source winget --scope user
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
# test path ~/AppData/Roaming/npm/lolcatjs then install if not found
|
|
12
|
+
if (Test-Path -Path "~/AppData/Roaming/npm/lolcatjs") { # may be ensure that utility.cmd is available
|
|
13
|
+
Write-Output "lolcatjs already installed ✅"
|
|
14
|
+
} else {
|
|
15
|
+
# install nodejs
|
|
16
|
+
npm install -g lolcatjs # -g is essential to have cli utility as well as js library.
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
# install figlet if not found
|
|
21
|
+
if (Test-Path -Path "~/AppData/Roaming/npm/figlet") { # may be ensure that utility.cmd is available
|
|
22
|
+
# all good
|
|
23
|
+
} else {
|
|
24
|
+
Write-Output "figlet already installed ✅"
|
|
25
|
+
npm install -g figlet-cli # -g is essential to have cli utility as well as js library.
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
# install boxes if not found
|
|
30
|
+
if (Test-Path -Path "~/AppData/Local/Microsoft/WindowsApps/boxes.exe") { # may be ensure that utility.cmd is available
|
|
31
|
+
Write-Output "boxes already installed ✅"
|
|
32
|
+
} else {
|
|
33
|
+
~/scripts/activate_ve
|
|
34
|
+
python -m fire machineconfig.jobs.python_windows_installers.boxes main
|
|
35
|
+
deactivate
|
|
36
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
|
|
2
|
+
# with admin prviliage, run this in order to minimally install croshell.
|
|
3
|
+
|
|
4
|
+
# virtual enviornment
|
|
5
|
+
# Invoke-WebRequest https://raw.githubusercontent.com/thisismygitrepo/machineconfig/main/src/machineconfig/setup_windows/ve.ps1 | Invoke-Expression
|
|
6
|
+
(iwr bit.ly/cfgvewindows).Content | iex
|
|
7
|
+
|
|
8
|
+
# dev repos
|
|
9
|
+
# Invoke-WebRequest https://raw.githubusercontent.com/thisismygitrepo/machineconfig/main/src/machineconfig/setup_windows/repos.ps1 | Invoke-Expression
|
|
10
|
+
(iwr bit.ly/cfgreposwindows).Content | iex
|
|
11
|
+
|
|
12
|
+
# symlinks
|
|
13
|
+
. ~/code/machineconfig/src/machineconfig/setup_windows/symlinks.ps1
|
|
14
|
+
|
|
15
|
+
# windows terminal and powershell
|
|
16
|
+
(iwr bit.ly/cfgwt).Content | iex
|