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,295 @@
|
|
|
1
|
+
// If you'd like to override the default keybindings completely, be sure to change "keybinds" to "keybinds clear-defaults=true"
|
|
2
|
+
keybinds {
|
|
3
|
+
normal {
|
|
4
|
+
// uncomment this and adjust key if using copy_on_select=false
|
|
5
|
+
// bind "Alt c" { Copy; }
|
|
6
|
+
}
|
|
7
|
+
locked {
|
|
8
|
+
bind "Ctrl g" { SwitchToMode "Normal"; }
|
|
9
|
+
}
|
|
10
|
+
resize {
|
|
11
|
+
bind "Ctrl n" { SwitchToMode "Normal"; }
|
|
12
|
+
bind "h" "Left" { Resize "Left"; }
|
|
13
|
+
bind "j" "Down" { Resize "Down"; }
|
|
14
|
+
bind "k" "Up" { Resize "Up"; }
|
|
15
|
+
bind "l" "Right" { Resize "Right"; }
|
|
16
|
+
bind "=" "+" { Resize "Increase"; }
|
|
17
|
+
bind "-" { Resize "Decrease"; }
|
|
18
|
+
}
|
|
19
|
+
pane {
|
|
20
|
+
bind "Ctrl p" { SwitchToMode "Normal"; }
|
|
21
|
+
bind "h" "Left" { MoveFocus "Left"; }
|
|
22
|
+
bind "l" "Right" { MoveFocus "Right"; }
|
|
23
|
+
bind "j" "Down" { MoveFocus "Down"; }
|
|
24
|
+
bind "k" "Up" { MoveFocus "Up"; }
|
|
25
|
+
bind "p" { SwitchFocus; }
|
|
26
|
+
bind "n" { NewPane; SwitchToMode "Normal"; }
|
|
27
|
+
bind "d" { NewPane "Down"; SwitchToMode "Normal"; }
|
|
28
|
+
bind "r" { NewPane "Right"; SwitchToMode "Normal"; }
|
|
29
|
+
bind "x" { CloseFocus; SwitchToMode "Normal"; }
|
|
30
|
+
bind "f" { ToggleFocusFullscreen; SwitchToMode "Normal"; }
|
|
31
|
+
bind "z" { TogglePaneFrames; SwitchToMode "Normal"; }
|
|
32
|
+
bind "w" { ToggleFloatingPanes; SwitchToMode "Normal"; }
|
|
33
|
+
bind "e" { TogglePaneEmbedOrFloating; SwitchToMode "Normal"; }
|
|
34
|
+
bind "c" { SwitchToMode "RenamePane"; PaneNameInput 0;}
|
|
35
|
+
}
|
|
36
|
+
move {
|
|
37
|
+
bind "Ctrl h" { SwitchToMode "Normal"; }
|
|
38
|
+
bind "n" "Tab" { MovePane; }
|
|
39
|
+
bind "h" "Left" { MovePane "Left"; }
|
|
40
|
+
bind "j" "Down" { MovePane "Down"; }
|
|
41
|
+
bind "k" "Up" { MovePane "Up"; }
|
|
42
|
+
bind "l" "Right" { MovePane "Right"; }
|
|
43
|
+
}
|
|
44
|
+
tab {
|
|
45
|
+
bind "Ctrl t" { SwitchToMode "Normal"; }
|
|
46
|
+
bind "r" { SwitchToMode "RenameTab"; TabNameInput 0; }
|
|
47
|
+
bind "h" "Left" "Up" "k" { GoToPreviousTab; }
|
|
48
|
+
bind "l" "Right" "Down" "j" { GoToNextTab; }
|
|
49
|
+
bind "n" { NewTab; SwitchToMode "Normal"; }
|
|
50
|
+
bind "x" { CloseTab; SwitchToMode "Normal"; }
|
|
51
|
+
bind "s" { ToggleActiveSyncTab; SwitchToMode "Normal"; }
|
|
52
|
+
bind "1" { GoToTab 1; SwitchToMode "Normal"; }
|
|
53
|
+
bind "2" { GoToTab 2; SwitchToMode "Normal"; }
|
|
54
|
+
bind "3" { GoToTab 3; SwitchToMode "Normal"; }
|
|
55
|
+
bind "4" { GoToTab 4; SwitchToMode "Normal"; }
|
|
56
|
+
bind "5" { GoToTab 5; SwitchToMode "Normal"; }
|
|
57
|
+
bind "6" { GoToTab 6; SwitchToMode "Normal"; }
|
|
58
|
+
bind "7" { GoToTab 7; SwitchToMode "Normal"; }
|
|
59
|
+
bind "8" { GoToTab 8; SwitchToMode "Normal"; }
|
|
60
|
+
bind "9" { GoToTab 9; SwitchToMode "Normal"; }
|
|
61
|
+
bind "Tab" { ToggleTab; }
|
|
62
|
+
}
|
|
63
|
+
scroll {
|
|
64
|
+
bind "Ctrl s" { SwitchToMode "Normal"; }
|
|
65
|
+
bind "e" { EditScrollback; SwitchToMode "Normal"; }
|
|
66
|
+
bind "s" { SwitchToMode "EnterSearch"; SearchInput 0; }
|
|
67
|
+
bind "Ctrl c" { ScrollToBottom; SwitchToMode "Normal"; }
|
|
68
|
+
bind "j" "Down" { ScrollDown; }
|
|
69
|
+
bind "k" "Up" { ScrollUp; }
|
|
70
|
+
bind "Ctrl f" "PageDown" "Right" "l" { PageScrollDown; }
|
|
71
|
+
bind "Ctrl b" "PageUp" "Left" "h" { PageScrollUp; }
|
|
72
|
+
bind "d" { HalfPageScrollDown; }
|
|
73
|
+
bind "u" { HalfPageScrollUp; }
|
|
74
|
+
// uncomment this and adjust key if using copy_on_select=false
|
|
75
|
+
// bind "Alt c" { Copy; }
|
|
76
|
+
}
|
|
77
|
+
search {
|
|
78
|
+
bind "Ctrl s" { SwitchToMode "Normal"; }
|
|
79
|
+
bind "Ctrl c" { ScrollToBottom; SwitchToMode "Normal"; }
|
|
80
|
+
bind "j" "Down" { ScrollDown; }
|
|
81
|
+
bind "k" "Up" { ScrollUp; }
|
|
82
|
+
bind "Ctrl f" "PageDown" "Right" "l" { PageScrollDown; }
|
|
83
|
+
bind "Ctrl b" "PageUp" "Left" "h" { PageScrollUp; }
|
|
84
|
+
bind "d" { HalfPageScrollDown; }
|
|
85
|
+
bind "u" { HalfPageScrollUp; }
|
|
86
|
+
bind "n" { Search "down"; }
|
|
87
|
+
bind "p" { Search "up"; }
|
|
88
|
+
bind "c" { SearchToggleOption "CaseSensitivity"; }
|
|
89
|
+
bind "w" { SearchToggleOption "Wrap"; }
|
|
90
|
+
bind "o" { SearchToggleOption "WholeWord"; }
|
|
91
|
+
}
|
|
92
|
+
entersearch {
|
|
93
|
+
bind "Ctrl c" "Esc" { SwitchToMode "Scroll"; }
|
|
94
|
+
bind "Enter" { SwitchToMode "Search"; }
|
|
95
|
+
}
|
|
96
|
+
renametab {
|
|
97
|
+
bind "Ctrl c" { SwitchToMode "Normal"; }
|
|
98
|
+
bind "Esc" { UndoRenameTab; SwitchToMode "Tab"; }
|
|
99
|
+
}
|
|
100
|
+
renamepane {
|
|
101
|
+
bind "Ctrl c" { SwitchToMode "Normal"; }
|
|
102
|
+
bind "Esc" { UndoRenamePane; SwitchToMode "Pane"; }
|
|
103
|
+
}
|
|
104
|
+
session {
|
|
105
|
+
bind "Ctrl o" { SwitchToMode "Normal"; }
|
|
106
|
+
bind "Ctrl s" { SwitchToMode "Scroll"; }
|
|
107
|
+
bind "d" { Detach; }
|
|
108
|
+
}
|
|
109
|
+
tmux {
|
|
110
|
+
bind "[" { SwitchToMode "Scroll"; }
|
|
111
|
+
bind "Ctrl b" { Write 2; SwitchToMode "Normal"; }
|
|
112
|
+
bind "\"" { NewPane "Down"; SwitchToMode "Normal"; }
|
|
113
|
+
bind "%" { NewPane "Right"; SwitchToMode "Normal"; }
|
|
114
|
+
bind "z" { ToggleFocusFullscreen; SwitchToMode "Normal"; }
|
|
115
|
+
bind "c" { NewTab; SwitchToMode "Normal"; }
|
|
116
|
+
bind "," { SwitchToMode "RenameTab"; }
|
|
117
|
+
bind "p" { GoToPreviousTab; SwitchToMode "Normal"; }
|
|
118
|
+
bind "n" { GoToNextTab; SwitchToMode "Normal"; }
|
|
119
|
+
bind "Left" { MoveFocus "Left"; SwitchToMode "Normal"; }
|
|
120
|
+
bind "Right" { MoveFocus "Right"; SwitchToMode "Normal"; }
|
|
121
|
+
bind "Down" { MoveFocus "Down"; SwitchToMode "Normal"; }
|
|
122
|
+
bind "Up" { MoveFocus "Up"; SwitchToMode "Normal"; }
|
|
123
|
+
bind "h" { MoveFocus "Left"; SwitchToMode "Normal"; }
|
|
124
|
+
bind "l" { MoveFocus "Right"; SwitchToMode "Normal"; }
|
|
125
|
+
bind "j" { MoveFocus "Down"; SwitchToMode "Normal"; }
|
|
126
|
+
bind "k" { MoveFocus "Up"; SwitchToMode "Normal"; }
|
|
127
|
+
bind "o" { FocusNextPane; }
|
|
128
|
+
bind "d" { Detach; }
|
|
129
|
+
}
|
|
130
|
+
shared_except "locked" {
|
|
131
|
+
bind "Ctrl g" { SwitchToMode "Locked"; }
|
|
132
|
+
bind "Ctrl q" { Quit; }
|
|
133
|
+
bind "Alt n" { NewPane; }
|
|
134
|
+
bind "Alt h" "Alt Left" { MoveFocusOrTab "Left"; }
|
|
135
|
+
bind "Alt l" "Alt Right" { MoveFocusOrTab "Right"; }
|
|
136
|
+
bind "Alt j" "Alt Down" { MoveFocus "Down"; }
|
|
137
|
+
bind "Alt k" "Alt Up" { MoveFocus "Up"; }
|
|
138
|
+
bind "Alt =" "Alt +" { Resize "Increase"; }
|
|
139
|
+
bind "Alt -" { Resize "Decrease"; }
|
|
140
|
+
}
|
|
141
|
+
shared_except "normal" "locked" {
|
|
142
|
+
bind "Enter" "Esc" { SwitchToMode "Normal"; }
|
|
143
|
+
}
|
|
144
|
+
shared_except "pane" "locked" {
|
|
145
|
+
bind "Ctrl p" { SwitchToMode "Pane"; }
|
|
146
|
+
}
|
|
147
|
+
shared_except "resize" "locked" {
|
|
148
|
+
bind "Ctrl n" { SwitchToMode "Resize"; }
|
|
149
|
+
}
|
|
150
|
+
shared_except "scroll" "locked" {
|
|
151
|
+
bind "Ctrl s" { SwitchToMode "Scroll"; }
|
|
152
|
+
}
|
|
153
|
+
shared_except "session" "locked" {
|
|
154
|
+
bind "Ctrl o" { SwitchToMode "Session"; }
|
|
155
|
+
}
|
|
156
|
+
shared_except "tab" "locked" {
|
|
157
|
+
bind "Ctrl t" { SwitchToMode "Tab"; }
|
|
158
|
+
}
|
|
159
|
+
shared_except "move" "locked" {
|
|
160
|
+
bind "Ctrl h" { SwitchToMode "Move"; }
|
|
161
|
+
}
|
|
162
|
+
shared_except "tmux" "locked" {
|
|
163
|
+
bind "Ctrl b" { SwitchToMode "Tmux"; }
|
|
164
|
+
}
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
plugins {
|
|
168
|
+
tab-bar { path "tab-bar"; }
|
|
169
|
+
status-bar { path "status-bar"; }
|
|
170
|
+
strider { path "strider"; }
|
|
171
|
+
compact-bar { path "compact-bar"; }
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
// Choose what to do when zellij receives SIGTERM, SIGINT, SIGQUIT or SIGHUP
|
|
175
|
+
// eg. when terminal window with an active zellij session is closed
|
|
176
|
+
// Options:
|
|
177
|
+
// - detach (Default)
|
|
178
|
+
// - quit
|
|
179
|
+
//
|
|
180
|
+
// on_force_close "quit"
|
|
181
|
+
|
|
182
|
+
// Send a request for a simplified ui (without arrow fonts) to plugins
|
|
183
|
+
// Options:
|
|
184
|
+
// - true
|
|
185
|
+
// - false (Default)
|
|
186
|
+
//
|
|
187
|
+
// simplified_ui true
|
|
188
|
+
|
|
189
|
+
// Choose the path to the default shell that zellij will use for opening new panes
|
|
190
|
+
// Default: $SHELL
|
|
191
|
+
//
|
|
192
|
+
// default_shell "fish"
|
|
193
|
+
|
|
194
|
+
// Toggle between having pane frames around the panes
|
|
195
|
+
// Options:
|
|
196
|
+
// - true (default)
|
|
197
|
+
// - false
|
|
198
|
+
//
|
|
199
|
+
// pane_frames true
|
|
200
|
+
|
|
201
|
+
// Define color themes for Zellij
|
|
202
|
+
// For more examples, see: https://github.com/zellij-org/zellij/tree/main/example/themes
|
|
203
|
+
// Once these themes are defined, one of them should to be selected in the "theme" section of this file
|
|
204
|
+
//
|
|
205
|
+
// themes {
|
|
206
|
+
// dracula {
|
|
207
|
+
// fg 248 248 242
|
|
208
|
+
// bg 40 42 54
|
|
209
|
+
// red 255 85 85
|
|
210
|
+
// green 80 250 123
|
|
211
|
+
// yellow 241 250 140
|
|
212
|
+
// blue 98 114 164
|
|
213
|
+
// magenta 255 121 198
|
|
214
|
+
// orange 255 184 108
|
|
215
|
+
// cyan 139 233 253
|
|
216
|
+
// black 0 0 0
|
|
217
|
+
// white 255 255 255
|
|
218
|
+
// }
|
|
219
|
+
// }
|
|
220
|
+
|
|
221
|
+
// Choose the theme that is specified in the themes section.
|
|
222
|
+
// Default: default
|
|
223
|
+
//
|
|
224
|
+
// theme "default"
|
|
225
|
+
|
|
226
|
+
// The name of the default layout to load on startup
|
|
227
|
+
// Default: "default"
|
|
228
|
+
//
|
|
229
|
+
// default_layout "compact"
|
|
230
|
+
|
|
231
|
+
// Choose the mode that zellij uses when starting up.
|
|
232
|
+
// Default: normal
|
|
233
|
+
//
|
|
234
|
+
// default_mode "locked"
|
|
235
|
+
|
|
236
|
+
// Toggle enabling the mouse mode.
|
|
237
|
+
// On certain configurations, or terminals this could
|
|
238
|
+
// potentially interfere with copying text.
|
|
239
|
+
// Options:
|
|
240
|
+
// - true (default)
|
|
241
|
+
// - false
|
|
242
|
+
//
|
|
243
|
+
// mouse_mode false
|
|
244
|
+
|
|
245
|
+
// Configure the scroll back buffer size
|
|
246
|
+
// This is the number of lines zellij stores for each pane in the scroll back
|
|
247
|
+
// buffer. Excess number of lines are discarded in a FIFO fashion.
|
|
248
|
+
// Valid values: positive integers
|
|
249
|
+
// Default value: 10000
|
|
250
|
+
//
|
|
251
|
+
// scroll_buffer_size 10000
|
|
252
|
+
|
|
253
|
+
// Provide a command to execute when copying text. The text will be piped to
|
|
254
|
+
// the stdin of the program to perform the copy. This can be used with
|
|
255
|
+
// terminal emulators which do not support the OSC 52 ANSI control sequence
|
|
256
|
+
// that will be used by default if this option is not set.
|
|
257
|
+
// Examples:
|
|
258
|
+
//
|
|
259
|
+
// copy_command "xclip -selection clipboard" // x11
|
|
260
|
+
// copy_command "wl-copy" // wayland
|
|
261
|
+
// copy_command "pbcopy" // osx
|
|
262
|
+
|
|
263
|
+
// Choose the destination for copied text
|
|
264
|
+
// Allows using the primary selection buffer (on x11/wayland) instead of the system clipboard.
|
|
265
|
+
// Does not apply when using copy_command.
|
|
266
|
+
// Options:
|
|
267
|
+
// - system (default)
|
|
268
|
+
// - primary
|
|
269
|
+
//
|
|
270
|
+
// copy_clipboard "primary"
|
|
271
|
+
|
|
272
|
+
// Enable or disable automatic copy (and clear) of selection when releasing mouse
|
|
273
|
+
// Default: true
|
|
274
|
+
//
|
|
275
|
+
// copy_on_select false
|
|
276
|
+
|
|
277
|
+
// Path to the default editor to use to edit pane scrollbuffer
|
|
278
|
+
// Default: $EDITOR or $VISUAL
|
|
279
|
+
//
|
|
280
|
+
// scrollback_editor "/usr/bin/vim"
|
|
281
|
+
|
|
282
|
+
// When attaching to an existing session with other users,
|
|
283
|
+
// should the session be mirrored (true)
|
|
284
|
+
// or should each user have their own cursor (false)
|
|
285
|
+
// Default: false
|
|
286
|
+
//
|
|
287
|
+
// mirror_session true
|
|
288
|
+
|
|
289
|
+
// The folder in which Zellij will look for layouts
|
|
290
|
+
//
|
|
291
|
+
// layout_dir "/path/to/my/layout_dir"
|
|
292
|
+
|
|
293
|
+
// The folder in which Zellij will look for themes
|
|
294
|
+
//
|
|
295
|
+
// theme_dir "/path/to/my/theme_dir"
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
|
|
2
|
+
layout {
|
|
3
|
+
pane {
|
|
4
|
+
size "10%"
|
|
5
|
+
borderless true
|
|
6
|
+
}// panes can be bare
|
|
7
|
+
pane split_direction="vertical" {
|
|
8
|
+
pane
|
|
9
|
+
pane
|
|
10
|
+
} // panes can have arguments on the same line
|
|
11
|
+
pane {
|
|
12
|
+
// panes can have arguments inside child-braces
|
|
13
|
+
command "exa"
|
|
14
|
+
cwd "/"
|
|
15
|
+
}
|
|
16
|
+
pane command="ls" { // or a mixture of same-line and child-braces arguments
|
|
17
|
+
cwd "/"
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
|
|
2
|
+
layout {
|
|
3
|
+
default_tab_template {
|
|
4
|
+
// the default zellij tab-bar and status bar plugins
|
|
5
|
+
pane size=1 borderless=true {
|
|
6
|
+
plugin location="zellij:compact-bar"
|
|
7
|
+
}
|
|
8
|
+
children
|
|
9
|
+
}
|
|
10
|
+
tab name="đ" focus=false {
|
|
11
|
+
pane name="lfpane" {
|
|
12
|
+
command "lf"
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
tab name="đ" focus=false { // the default_tab_template with three vertical panes between the plugins
|
|
16
|
+
pane name="tpane" {
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
tab name="đĨī¸" focus=true // the default_tab_template
|
|
21
|
+
}
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
|
|
2
|
+
layout {
|
|
3
|
+
default_tab_template {
|
|
4
|
+
// the default zellij tab-bar and status bar plugins
|
|
5
|
+
pane size=1 borderless=true {
|
|
6
|
+
plugin location="zellij:compact-bar"
|
|
7
|
+
}
|
|
8
|
+
children
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
tab name="đ§âđģ" {
|
|
12
|
+
pane
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
tab name="đģ" split_direction="horizontal" focus=true {
|
|
16
|
+
|
|
17
|
+
pane name="2Right" split_direction="vertical" size="35%" {
|
|
18
|
+
pane name="topLeft" size="70%" {
|
|
19
|
+
command "htop"
|
|
20
|
+
}
|
|
21
|
+
pane name="topRight" size="30%" {
|
|
22
|
+
command "btm"
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
pane name="2Left" split_direction="vertical" size="65%" {
|
|
27
|
+
pane name="bottomLeft" size="30%" {
|
|
28
|
+
|
|
29
|
+
pane name="bottomleft1" size="40%" {
|
|
30
|
+
focus true
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
pane name="bottomleft2" size="60%" {
|
|
34
|
+
command "timeout"
|
|
35
|
+
args "3s" "aafire" "-driver" "slang"
|
|
36
|
+
close_on_exit true
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
}
|
|
40
|
+
pane name="bottomMiddle" size="70%" {
|
|
41
|
+
pane name="bottomMiddle1" size="30%" {
|
|
42
|
+
command "lf"
|
|
43
|
+
}
|
|
44
|
+
pane name="bottomMiddle2" size="70%" {
|
|
45
|
+
command "timeout"
|
|
46
|
+
args "3s" "cmatrix"
|
|
47
|
+
close_on_exit true
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
tab name="đĨī¸" {
|
|
55
|
+
|
|
56
|
+
pane
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
}
|
|
@@ -0,0 +1,166 @@
|
|
|
1
|
+
#!/bin/bash
|
|
2
|
+
#=======================================================================
|
|
3
|
+
# đĻ NIX CLI TOOLS INSTALLATION SCRIPT
|
|
4
|
+
#=======================================================================
|
|
5
|
+
# This script installs various command-line utilities using the Nix package manager
|
|
6
|
+
|
|
7
|
+
echo """
|
|
8
|
+
#=======================================================================
|
|
9
|
+
đ SYSTEM UTILITIES | Installing system management tools
|
|
10
|
+
#=======================================================================
|
|
11
|
+
"""
|
|
12
|
+
|
|
13
|
+
# System upgrade tool
|
|
14
|
+
echo "đĨ Installing topgrade - multi-package-manager upgrade tool..."
|
|
15
|
+
nix-env -iA nixpkgs.topgrade || true
|
|
16
|
+
|
|
17
|
+
# Process management
|
|
18
|
+
echo "đĨ Installing procs - modern replacement for ps..."
|
|
19
|
+
nix-env -iA nixpkgs.procs || true
|
|
20
|
+
|
|
21
|
+
# File watching
|
|
22
|
+
echo "đĨ Installing watchexec - executes commands when files change..."
|
|
23
|
+
nix-env -iA nixpkgs.watchexec || true
|
|
24
|
+
|
|
25
|
+
echo """
|
|
26
|
+
#=======================================================================
|
|
27
|
+
đ FILE MANAGEMENT | Installing file browsers and utilities
|
|
28
|
+
#=======================================================================
|
|
29
|
+
"""
|
|
30
|
+
|
|
31
|
+
# Terminal file managers
|
|
32
|
+
echo "đĨ Installing xplr - hackable file explorer..."
|
|
33
|
+
nix-env -iA nixpkgs.xplr || true
|
|
34
|
+
|
|
35
|
+
echo "đĨ Installing nnn - fast and flexible file manager..."
|
|
36
|
+
nix-env -iA nixpkgs.nnn || true
|
|
37
|
+
|
|
38
|
+
echo "đĨ Installing joshuto - ranger-like file manager in Rust..."
|
|
39
|
+
nix-env -iA nixpkgs.joshuto || true
|
|
40
|
+
|
|
41
|
+
echo "đĨ Installing lf - terminal file manager..."
|
|
42
|
+
nix-env -iA nixpkgs.lf || true
|
|
43
|
+
|
|
44
|
+
echo "đĨ Installing broot - directory navigation tool..."
|
|
45
|
+
nix-env -iA nixpkgs.broot || true
|
|
46
|
+
|
|
47
|
+
echo "đĨ Installing tere - faster alternative to cd..."
|
|
48
|
+
nix-env -iA nixpkgs.tere || true
|
|
49
|
+
|
|
50
|
+
# Disk usage analyzers
|
|
51
|
+
echo "đĨ Installing dua - disk usage analyzer..."
|
|
52
|
+
nix-env -iA nixpkgs.dua || true
|
|
53
|
+
|
|
54
|
+
echo "đĨ Installing diskonaut - terminal disk space navigator..."
|
|
55
|
+
nix-env -iA nixpkgs.diskonaut || true
|
|
56
|
+
|
|
57
|
+
# File cleanup
|
|
58
|
+
echo "đĨ Installing kondo - cleanup tool for dev projects..."
|
|
59
|
+
nix-env -iA nixpkgs.kondo || true
|
|
60
|
+
|
|
61
|
+
echo """
|
|
62
|
+
#=======================================================================
|
|
63
|
+
đŧī¸ VISUAL TOOLS | Installing terminal visualization tools
|
|
64
|
+
#=======================================================================
|
|
65
|
+
"""
|
|
66
|
+
|
|
67
|
+
# Terminal visualization
|
|
68
|
+
echo "đĨ Installing viu - terminal image viewer..."
|
|
69
|
+
nix-env -iA nixpkgs.viu || true
|
|
70
|
+
|
|
71
|
+
echo "đĨ Installing bottom - graphical process/system monitor..."
|
|
72
|
+
nix-env -iA nixpkgs.bottom || true
|
|
73
|
+
|
|
74
|
+
echo "đĨ Installing delta - syntax-highlighting pager for git..."
|
|
75
|
+
nix-env -iA nixpkgs.delta || true
|
|
76
|
+
|
|
77
|
+
echo """
|
|
78
|
+
#=======================================================================
|
|
79
|
+
đ§ DEVELOPMENT TOOLS | Installing programming utilities
|
|
80
|
+
#=======================================================================
|
|
81
|
+
"""
|
|
82
|
+
|
|
83
|
+
# Code editors
|
|
84
|
+
echo "đĨ Installing helix - modal text editor..."
|
|
85
|
+
nix-env -iA nixpkgs.helix || true
|
|
86
|
+
|
|
87
|
+
# Terminal multiplexer
|
|
88
|
+
echo "đĨ Installing zellij - terminal workspace with panes..."
|
|
89
|
+
nix-env -iA nixpkgs.zellij || true
|
|
90
|
+
|
|
91
|
+
# Development tools
|
|
92
|
+
echo "đĨ Installing rust-analyzer - Rust language server..."
|
|
93
|
+
nix-env -iA nixpkgs.rust-analyzer || true
|
|
94
|
+
|
|
95
|
+
echo "đĨ Installing tokei - code statistics tool..."
|
|
96
|
+
nix-env -iA nixpkgs.tokei || true
|
|
97
|
+
|
|
98
|
+
# Git interfaces
|
|
99
|
+
echo "đĨ Installing gitui - terminal UI for git..."
|
|
100
|
+
nix-env -iA nixpkgs.gitui || true
|
|
101
|
+
|
|
102
|
+
echo """
|
|
103
|
+
#=======================================================================
|
|
104
|
+
đ SEARCH TOOLS | Installing fuzzy finders and search utilities
|
|
105
|
+
#=======================================================================
|
|
106
|
+
"""
|
|
107
|
+
|
|
108
|
+
# Search history
|
|
109
|
+
echo "đĨ Installing mcfly - search shell history with context..."
|
|
110
|
+
nix-env -iA nixpkgs.mcfly || true
|
|
111
|
+
|
|
112
|
+
# Fuzzy finder
|
|
113
|
+
echo "đĨ Installing skim - fuzzy finder in Rust..."
|
|
114
|
+
nix-env -iA nixpkgs.skim || true
|
|
115
|
+
|
|
116
|
+
echo """
|
|
117
|
+
#=======================================================================
|
|
118
|
+
đ NETWORK & CLOUD TOOLS | Installing file transfer and cloud utilities
|
|
119
|
+
#=======================================================================
|
|
120
|
+
"""
|
|
121
|
+
|
|
122
|
+
# File transfer
|
|
123
|
+
echo "đĨ Installing termscp - terminal file transfer client..."
|
|
124
|
+
nix-env -iA nixpkgs.termscp || true
|
|
125
|
+
|
|
126
|
+
# Cloud storage
|
|
127
|
+
echo "đĨ Installing rclone - rsync for cloud storage..."
|
|
128
|
+
nix-env -iA nixpkgs.rclone || true
|
|
129
|
+
|
|
130
|
+
echo """
|
|
131
|
+
#=======================================================================
|
|
132
|
+
đĄī¸ SECURITY TOOLS | Installing password management utilities
|
|
133
|
+
#=======================================================================
|
|
134
|
+
"""
|
|
135
|
+
|
|
136
|
+
# Password management
|
|
137
|
+
echo "đĨ Installing gopass - team password manager with git..."
|
|
138
|
+
nix-env -iA nixpkgs.gopass || true
|
|
139
|
+
|
|
140
|
+
echo """
|
|
141
|
+
#=======================================================================
|
|
142
|
+
đ DOCUMENTATION | Installing help and reference tools
|
|
143
|
+
#=======================================================================
|
|
144
|
+
"""
|
|
145
|
+
|
|
146
|
+
# Command reference
|
|
147
|
+
echo "đĨ Installing tldr - simplified command documentation..."
|
|
148
|
+
nix-env -iA nixpkgs.tldr || true
|
|
149
|
+
|
|
150
|
+
# Shell alternatives
|
|
151
|
+
echo "đĨ Installing nushell - modern shell alternative..."
|
|
152
|
+
nix-env -iA nixpkgs.nushell || true
|
|
153
|
+
|
|
154
|
+
echo """
|
|
155
|
+
#=======================================================================
|
|
156
|
+
â
INSTALLATION COMPLETE | All Nix CLI tools have been installed
|
|
157
|
+
#=======================================================================
|
|
158
|
+
"""
|
|
159
|
+
|
|
160
|
+
# Commented out tools
|
|
161
|
+
# echo "đĨ Installing ots - one-time secret sharing..."
|
|
162
|
+
# nix-env -iA nixpkgs.ots || true
|
|
163
|
+
|
|
164
|
+
# echo "đĨ Installing qrscan - QR code scanner..."
|
|
165
|
+
# nix-env -iA nixpkgs.qrscan || true
|
|
166
|
+
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
#!/bin/bash
|
|
2
|
+
# â¨ī¸ Linux Mint Keyboard Shortcuts Configuration
|
|
3
|
+
|
|
4
|
+
# đ Rofi Launcher Shortcut Settings
|
|
5
|
+
KEYBINDING_NAME='Launch Rofi'
|
|
6
|
+
KEYBINDING_COMMAND='rofi -show drun'
|
|
7
|
+
KEYBINDING_BINDING='<Control><Alt>p'
|
|
8
|
+
KEYBINDING_PATH='/org/cinnamon/desktop/keybindings/custom-keybindings/custom0/'
|
|
9
|
+
|
|
10
|
+
# đ Configure Shortcut
|
|
11
|
+
# Set the name
|
|
12
|
+
gsettings set org.cinnamon.desktop.keybindings.custom-keybinding:$KEYBINDING_PATH name "$KEYBINDING_NAME"
|
|
13
|
+
# Set the command
|
|
14
|
+
gsettings set org.cinnamon.desktop.keybindings.custom-keybinding:$KEYBINDING_PATH command "$KEYBINDING_COMMAND"
|
|
15
|
+
# Set the binding
|
|
16
|
+
gsettings set org.cinnamon.desktop.keybindings.custom-keybinding:$KEYBINDING_PATH binding "['$KEYBINDING_BINDING']"
|
|
17
|
+
|
|
18
|
+
# đ Update Keybindings List
|
|
19
|
+
# Get the current list of custom keybindings
|
|
20
|
+
CURRENT_KEYBINDINGS=$(gsettings get org.cinnamon.desktop.keybindings custom-list)
|
|
21
|
+
|
|
22
|
+
# đ Add new keybinding if not present
|
|
23
|
+
if [[ "$CURRENT_KEYBINDINGS" != *custom0* ]]; then
|
|
24
|
+
if [ "$CURRENT_KEYBINDINGS" = "@as []" ]; then
|
|
25
|
+
NEW_KEYBINDINGS="['custom0']"
|
|
26
|
+
else
|
|
27
|
+
NEW_KEYBINDINGS="${CURRENT_KEYBINDINGS%]*}, 'custom0']"
|
|
28
|
+
fi
|
|
29
|
+
gsettings set org.cinnamon.desktop.keybindings custom-list "$NEW_KEYBINDINGS"
|
|
30
|
+
fi
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
#!/usr/bin/bash
|
|
2
|
+
#=======================================================================
|
|
3
|
+
# đ SSH PUBLIC KEY AUTHENTICATION SETUP
|
|
4
|
+
#=======================================================================
|
|
5
|
+
# This script helps set up passwordless SSH authentication to remote Linux machines
|
|
6
|
+
|
|
7
|
+
echo """
|
|
8
|
+
#=======================================================================
|
|
9
|
+
âšī¸ PASSWORDLESS SSH SETUP | Manual instructions for key deployment
|
|
10
|
+
#=======================================================================
|
|
11
|
+
"""
|
|
12
|
+
|
|
13
|
+
echo """
|
|
14
|
+
đ There are two methods to copy your public key to a remote server:
|
|
15
|
+
|
|
16
|
+
đ METHOD 1: Using ssh-copy-id (Linux clients only)
|
|
17
|
+
ssh-copy-id username@hostname
|
|
18
|
+
|
|
19
|
+
đ METHOD 2: Manual process (For Windows clients)
|
|
20
|
+
Windows PowerShell command:
|
|
21
|
+
type $env:USERPROFILE\.ssh\id_rsa.pub | ssh username@hostname "cat >> .ssh/authorized_keys"
|
|
22
|
+
|
|
23
|
+
đ METHOD 3: Using SFTP (detailed below)
|
|
24
|
+
"""
|
|
25
|
+
|
|
26
|
+
echo """
|
|
27
|
+
#=======================================================================
|
|
28
|
+
đ MANUAL SFTP PROCESS | Step-by-step instructions
|
|
29
|
+
#=======================================================================
|
|
30
|
+
|
|
31
|
+
1ī¸âŖ Connect to the server via SFTP (you'll need to enter password once):
|
|
32
|
+
sftp username@hostname
|
|
33
|
+
|
|
34
|
+
2ī¸âŖ Create .ssh directory on remote server if it doesn't exist:
|
|
35
|
+
mkdir -p .ssh
|
|
36
|
+
|
|
37
|
+
3ī¸âŖ Navigate to the .ssh directory:
|
|
38
|
+
cd .ssh
|
|
39
|
+
|
|
40
|
+
4ī¸âŖ Upload your public key:
|
|
41
|
+
put /path/to/your/local/id_rsa.pub
|
|
42
|
+
|
|
43
|
+
5ī¸âŖ Exit SFTP:
|
|
44
|
+
exit
|
|
45
|
+
|
|
46
|
+
6ī¸âŖ SSH to the server (password required this one last time):
|
|
47
|
+
ssh username@hostname
|
|
48
|
+
|
|
49
|
+
7ī¸âŖ Append the public key to authorized_keys:
|
|
50
|
+
cat ~/.ssh/id_rsa.pub >> ~/.ssh/authorized_keys
|
|
51
|
+
|
|
52
|
+
8ī¸âŖ Set proper permissions:
|
|
53
|
+
chmod 600 ~/.ssh/authorized_keys
|
|
54
|
+
chmod 700 ~/.ssh
|
|
55
|
+
|
|
56
|
+
9ī¸âŖ Test the connection in a new terminal (should not ask for password)
|
|
57
|
+
"""
|
|
58
|
+
|
|
59
|
+
# Note: This script contains instructions only - you need to manually follow the steps
|
|
60
|
+
# replacing 'username@hostname' with your actual username and server hostname
|