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,77 @@
|
|
|
1
|
+
# from https://docs.astral.sh/ruff/configuration/
|
|
2
|
+
|
|
3
|
+
# Exclude a variety of commonly ignored directories.
|
|
4
|
+
exclude = [
|
|
5
|
+
".bzr",
|
|
6
|
+
".direnv",
|
|
7
|
+
".eggs",
|
|
8
|
+
".git",
|
|
9
|
+
".git-rewrite",
|
|
10
|
+
".hg",
|
|
11
|
+
".mypy_cache",
|
|
12
|
+
".nox",
|
|
13
|
+
".pants.d",
|
|
14
|
+
".pytype",
|
|
15
|
+
".ruff_cache",
|
|
16
|
+
".svn",
|
|
17
|
+
".tox",
|
|
18
|
+
".venv",
|
|
19
|
+
"__pypackages__",
|
|
20
|
+
"_build",
|
|
21
|
+
"buck-out",
|
|
22
|
+
"build",
|
|
23
|
+
"dist",
|
|
24
|
+
"node_modules",
|
|
25
|
+
"venv",
|
|
26
|
+
".ipynb_checkpoints",
|
|
27
|
+
".ipynb",
|
|
28
|
+
".pytest_cache",
|
|
29
|
+
|
|
30
|
+
]
|
|
31
|
+
|
|
32
|
+
# Same as Black.
|
|
33
|
+
line-length = 250
|
|
34
|
+
indent-width = 4
|
|
35
|
+
|
|
36
|
+
# Assume Python 3.8
|
|
37
|
+
# target-version = "py38"
|
|
38
|
+
|
|
39
|
+
[lint]
|
|
40
|
+
# Enable Pyflakes (`F`) and a subset of the pycodestyle (`E`) codes by default.
|
|
41
|
+
# Unlike Flake8, Ruff doesn't enable pycodestyle warnings (`W`) or
|
|
42
|
+
# McCabe complexity (`C901`) by default.
|
|
43
|
+
select = ["E4", "E7", "E9", "F"]
|
|
44
|
+
|
|
45
|
+
ignore = [
|
|
46
|
+
"E701", # multiple statements in one line.
|
|
47
|
+
"E702",
|
|
48
|
+
"E721", # don't compare types use isinstance
|
|
49
|
+
"E401", # multiple imports in one line
|
|
50
|
+
]
|
|
51
|
+
|
|
52
|
+
# Allow fix for all enabled rules (when `--fix`) is provided.
|
|
53
|
+
fixable = ["ALL"]
|
|
54
|
+
unfixable = []
|
|
55
|
+
|
|
56
|
+
# Allow unused variables when underscore-prefixed.
|
|
57
|
+
dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"
|
|
58
|
+
|
|
59
|
+
[format]
|
|
60
|
+
# Like Black, use double quotes for strings.
|
|
61
|
+
quote-style = "double"
|
|
62
|
+
exclude = ["*.ipynb"]
|
|
63
|
+
# exclude = ["generated"]
|
|
64
|
+
|
|
65
|
+
docstring-code-format = false
|
|
66
|
+
docstring-code-line-length = 150
|
|
67
|
+
# Use `\n` line endings for all files
|
|
68
|
+
line-ending = "lf"
|
|
69
|
+
skip-magic-trailing-comma = true
|
|
70
|
+
|
|
71
|
+
# Like Black, indent with spaces, rather than tabs.
|
|
72
|
+
indent-style = "space"
|
|
73
|
+
|
|
74
|
+
|
|
75
|
+
# Like Black, automatically detect the appropriate line ending.
|
|
76
|
+
# line-ending = "auto"
|
|
77
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
Signature: 8a477f597d28d172789f06886806bc55
|
|
File without changes
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
|
|
2
|
+
|
|
3
|
+
lvim.colorscheme = "torte"
|
|
4
|
+
|
|
5
|
+
-- Additional Plugins
|
|
6
|
+
lvim.plugins = {
|
|
7
|
+
-- {
|
|
8
|
+
-- "folke/trouble.nvim",
|
|
9
|
+
-- cmd = "TroubleToggle",
|
|
10
|
+
-- },
|
|
11
|
+
"mfussenegger/nvim-dap-python",
|
|
12
|
+
-- "akinsho/toggleterm.nvim",
|
|
13
|
+
"stevearc/overseer.nvim",
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
require('overseer').setup()
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
require('dap').configurations.python = { {
|
|
20
|
+
type = 'python',
|
|
21
|
+
request = 'launch',
|
|
22
|
+
args = { "-i" },
|
|
23
|
+
name = 'My custom launch configuration',
|
|
24
|
+
program = '${file}',
|
|
25
|
+
pythonPath = function()
|
|
26
|
+
return "${env:VIRTUAL_ENV}/Scripts/python.exe"
|
|
27
|
+
end;
|
|
28
|
+
-- ... more options, see https://github.com/microsoft/debugpy/wiki/Debug-configuration-settings
|
|
29
|
+
},
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
local dap = require('dap')
|
|
34
|
+
dap.adapters.python = {
|
|
35
|
+
type = 'executable';
|
|
36
|
+
command = "C:/Users/alex/venvs/ve/Scripts/python.exe";
|
|
37
|
+
args = {"-i" };
|
|
38
|
+
}
|
|
39
|
+
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
|
|
2
|
+
lvim.plugins = {
|
|
3
|
+
-- {
|
|
4
|
+
-- "folke/trouble.nvim",
|
|
5
|
+
-- cmd = "TroubleToggle",
|
|
6
|
+
-- },
|
|
7
|
+
"mfussenegger/nvim-dap-python",
|
|
8
|
+
-- "akinsho/toggleterm.nvim",
|
|
9
|
+
"stevearc/overseer.nvim",
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
require('overseer').setup()
|
|
13
|
+
require('dap-python').setup('~/ve/Scripts/ipython.exe')
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
|
|
2
|
+
procs:
|
|
3
|
+
explorer:
|
|
4
|
+
shell:
|
|
5
|
+
$select: os
|
|
6
|
+
windows: "lf"
|
|
7
|
+
$else: "lf"
|
|
8
|
+
env:
|
|
9
|
+
TEXT:
|
|
10
|
+
$select: os
|
|
11
|
+
windows: Windows
|
|
12
|
+
linux: Linux
|
|
13
|
+
macos: Macos
|
|
14
|
+
freebsd: FreeBSD
|
|
15
|
+
|
|
16
|
+
monitor:
|
|
17
|
+
shell:
|
|
18
|
+
$select: os
|
|
19
|
+
windows: "btm"
|
|
20
|
+
$else: "btop"
|
|
21
|
+
env:
|
|
22
|
+
TEXT:
|
|
23
|
+
$select: os
|
|
24
|
+
windows: Windows
|
|
25
|
+
linux: Linux
|
|
26
|
+
macos: Macos
|
|
27
|
+
freebsd: FreeBSD
|
|
28
|
+
|
|
29
|
+
main:
|
|
30
|
+
shell:
|
|
31
|
+
$select: os
|
|
32
|
+
windows: "pwsh"
|
|
33
|
+
$else: "bash"
|
|
34
|
+
env:
|
|
35
|
+
TEXT:
|
|
36
|
+
$select: os
|
|
37
|
+
windows: Windows
|
|
38
|
+
linux: Linux
|
|
39
|
+
macos: Macos
|
|
40
|
+
freebsd: FreeBSD
|
|
41
|
+
|
|
42
|
+
shell:
|
|
43
|
+
shell:
|
|
44
|
+
$select: os
|
|
45
|
+
windows: "pwsh"
|
|
46
|
+
$else: "bash"
|
|
47
|
+
env:
|
|
48
|
+
TEXT:
|
|
49
|
+
$select: os
|
|
50
|
+
windows: Windows
|
|
51
|
+
linux: Linux
|
|
52
|
+
macos: Macos
|
|
53
|
+
freebsd: FreeBSD
|
|
54
|
+
|
|
55
|
+
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
|
|
2
|
+
text/* bat --paging=never --color=always %pistol-filename%
|
|
3
|
+
|
|
4
|
+
inode/directory lsd -la %pistol-filename%
|
|
5
|
+
|
|
6
|
+
fpath /var/src/my-bash-project/bin/[^/]+$ bat --map-syntax :bash --paging=never --color=always %pistol-filename%
|
|
7
|
+
|
|
8
|
+
image/.* /home/alex/code/machineconfig/src/machineconfig/settings/lf/linux/exe/previewer.sh %pistol-filename% %pistol-extra0% %pistol-extra1% %pistol-extra2% %pistol-extra3%
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
|
|
2
|
+
# margin:
|
|
3
|
+
# percent: 8
|
|
4
|
+
|
|
5
|
+
defaults:
|
|
6
|
+
# margin:
|
|
7
|
+
# percent: 8
|
|
8
|
+
|
|
9
|
+
# override the terminal font size when in windows or when using sixel.
|
|
10
|
+
terminal_font_size: 16
|
|
11
|
+
|
|
12
|
+
# the theme to use by default in every presentation unless overridden.
|
|
13
|
+
theme: dark
|
|
14
|
+
|
|
15
|
+
# the image protocol to use.
|
|
16
|
+
image_protocol: kitty-local
|
|
17
|
+
|
|
18
|
+
typst:
|
|
19
|
+
# the pixels per inch when rendering latex/typst formulas.
|
|
20
|
+
ppi: 300
|
|
21
|
+
|
|
22
|
+
mermaid:
|
|
23
|
+
# the scale parameter passed to the mermaid CLI (mmdc).
|
|
24
|
+
scale: 2
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
options:
|
|
28
|
+
strict_front_matter_parsing: false
|
|
29
|
+
# needed so that the `class: invert` command is ignored
|
|
30
|
+
|
|
31
|
+
# whether to treat a thematic break as a slide end.
|
|
32
|
+
end_slide_shorthand: true
|
|
33
|
+
|
|
34
|
+
# whether slides are automatically terminated when a slide title is found.
|
|
35
|
+
implicit_slide_ends: false
|
|
36
|
+
|
|
37
|
+
# the prefix to use for commands.
|
|
38
|
+
command_prefix: ""
|
|
39
|
+
|
|
40
|
+
# show all lists incrementally, by implicitly adding pauses in between elements.
|
|
41
|
+
incremental_lists: false
|
|
42
|
+
|
|
43
|
+
bindings:
|
|
44
|
+
# the keys that cause the presentation to move forwards.
|
|
45
|
+
next: ["l", "j", "<right>", "<page_down>", "<down>", " "]
|
|
46
|
+
|
|
47
|
+
# the keys that cause the presentation to move backwards.
|
|
48
|
+
previous: ["h", "k", "<left>", "<page_up>", "<up>"]
|
|
49
|
+
|
|
50
|
+
# the key binding to jump to the first slide.
|
|
51
|
+
first_slide: ["gg"]
|
|
52
|
+
|
|
53
|
+
# the key binding to jump to the last slide.
|
|
54
|
+
last_slide: ["G"]
|
|
55
|
+
|
|
56
|
+
# the key binding to jump to a specific slide.
|
|
57
|
+
go_to_slide: ["<number>G"]
|
|
58
|
+
|
|
59
|
+
# the key binding to execute a piece of shell code.
|
|
60
|
+
execute_code: ["<c-e>"]
|
|
61
|
+
|
|
62
|
+
# the key binding to reload the presentation.
|
|
63
|
+
reload: ["<c-r>"]
|
|
64
|
+
|
|
65
|
+
# the key binding to toggle the slide index modal.
|
|
66
|
+
toggle_slide_index: ["<c-p>"]
|
|
67
|
+
|
|
68
|
+
# the key binding to toggle the key bindings modal.
|
|
69
|
+
toggle_bindings: ["?"]
|
|
70
|
+
|
|
71
|
+
# the key binding to close the currently open modal.
|
|
72
|
+
close_modal: ["<esc>"]
|
|
73
|
+
|
|
74
|
+
# the key binding to close the application.
|
|
75
|
+
exit: ["<c-c>"]
|
|
76
|
+
|
|
@@ -0,0 +1,142 @@
|
|
|
1
|
+
|
|
2
|
+
# https://github.com/dalance/procs?tab=readme-ov-file#installation
|
|
3
|
+
|
|
4
|
+
[[columns]]
|
|
5
|
+
kind = "Pid"
|
|
6
|
+
style = "BrightYellow|Yellow"
|
|
7
|
+
numeric_search = true
|
|
8
|
+
nonnumeric_search = false
|
|
9
|
+
align = "Left"
|
|
10
|
+
|
|
11
|
+
[[columns]]
|
|
12
|
+
kind = "User"
|
|
13
|
+
style = "BrightGreen|Green"
|
|
14
|
+
numeric_search = false
|
|
15
|
+
nonnumeric_search = true
|
|
16
|
+
align = "Left"
|
|
17
|
+
|
|
18
|
+
[[columns]]
|
|
19
|
+
kind = "Separator"
|
|
20
|
+
style = "White|BrightBlack"
|
|
21
|
+
numeric_search = false
|
|
22
|
+
nonnumeric_search = false
|
|
23
|
+
align = "Left"
|
|
24
|
+
|
|
25
|
+
[[columns]]
|
|
26
|
+
kind = "Tty"
|
|
27
|
+
style = "BrightWhite|Black"
|
|
28
|
+
numeric_search = false
|
|
29
|
+
nonnumeric_search = false
|
|
30
|
+
align = "Left"
|
|
31
|
+
|
|
32
|
+
[[columns]]
|
|
33
|
+
kind = "UsageCpu"
|
|
34
|
+
style = "ByState"
|
|
35
|
+
numeric_search = false
|
|
36
|
+
nonnumeric_search = false
|
|
37
|
+
align = "Right"
|
|
38
|
+
|
|
39
|
+
[[columns]]
|
|
40
|
+
kind = "UsageMem"
|
|
41
|
+
style = "ByUnit"
|
|
42
|
+
numeric_search = false
|
|
43
|
+
nonnumeric_search = false
|
|
44
|
+
align = "Right"
|
|
45
|
+
|
|
46
|
+
[[columns]]
|
|
47
|
+
kind = "CpuTime"
|
|
48
|
+
style = "BrightCyan|Cyan"
|
|
49
|
+
numeric_search = false
|
|
50
|
+
nonnumeric_search = false
|
|
51
|
+
align = "Left"
|
|
52
|
+
|
|
53
|
+
[[columns]]
|
|
54
|
+
kind = "MultiSlot"
|
|
55
|
+
style = "ByUnit"
|
|
56
|
+
numeric_search = false
|
|
57
|
+
nonnumeric_search = false
|
|
58
|
+
align = "Right"
|
|
59
|
+
|
|
60
|
+
[[columns]]
|
|
61
|
+
kind = "Separator"
|
|
62
|
+
style = "White|BrightBlack"
|
|
63
|
+
numeric_search = false
|
|
64
|
+
nonnumeric_search = false
|
|
65
|
+
align = "Left"
|
|
66
|
+
|
|
67
|
+
[[columns]]
|
|
68
|
+
kind = "Command"
|
|
69
|
+
style = "BrightWhite|Black"
|
|
70
|
+
numeric_search = false
|
|
71
|
+
nonnumeric_search = true
|
|
72
|
+
align = "Left"
|
|
73
|
+
|
|
74
|
+
[style]
|
|
75
|
+
header = "BrightWhite|Black"
|
|
76
|
+
unit = "BrightWhite|Black"
|
|
77
|
+
tree = "BrightWhite|Black"
|
|
78
|
+
|
|
79
|
+
[style.by_percentage]
|
|
80
|
+
color_000 = "BrightBlue|Blue"
|
|
81
|
+
color_025 = "BrightGreen|Green"
|
|
82
|
+
color_050 = "BrightYellow|Yellow"
|
|
83
|
+
color_075 = "BrightRed|Red"
|
|
84
|
+
color_100 = "BrightRed|Red"
|
|
85
|
+
|
|
86
|
+
[style.by_state]
|
|
87
|
+
color_d = "BrightRed|Red"
|
|
88
|
+
color_r = "BrightGreen|Green"
|
|
89
|
+
color_s = "BrightBlue|Blue"
|
|
90
|
+
color_t = "BrightCyan|Cyan"
|
|
91
|
+
color_z = "BrightMagenta|Magenta"
|
|
92
|
+
color_x = "BrightMagenta|Magenta"
|
|
93
|
+
color_k = "BrightYellow|Yellow"
|
|
94
|
+
color_w = "BrightYellow|Yellow"
|
|
95
|
+
color_p = "BrightYellow|Yellow"
|
|
96
|
+
|
|
97
|
+
[style.by_unit]
|
|
98
|
+
color_k = "BrightBlue|Blue"
|
|
99
|
+
color_m = "BrightGreen|Green"
|
|
100
|
+
color_g = "BrightYellow|Yellow"
|
|
101
|
+
color_t = "BrightRed|Red"
|
|
102
|
+
color_p = "BrightRed|Red"
|
|
103
|
+
color_x = "BrightBlue|Blue"
|
|
104
|
+
|
|
105
|
+
[search]
|
|
106
|
+
numeric_search = "Exact"
|
|
107
|
+
nonnumeric_search = "Partial"
|
|
108
|
+
logic = "And"
|
|
109
|
+
case = "Smart"
|
|
110
|
+
|
|
111
|
+
[display]
|
|
112
|
+
show_self = true
|
|
113
|
+
show_thread = true
|
|
114
|
+
show_thread_in_tree = true
|
|
115
|
+
show_parent_in_tree = true
|
|
116
|
+
show_children_in_tree = true
|
|
117
|
+
show_header = true
|
|
118
|
+
show_footer = true
|
|
119
|
+
cut_to_terminal = true
|
|
120
|
+
cut_to_pager = false
|
|
121
|
+
cut_to_pipe = false
|
|
122
|
+
color_mode = "Auto"
|
|
123
|
+
separator = "│"
|
|
124
|
+
ascending = "▲"
|
|
125
|
+
descending = "▼"
|
|
126
|
+
tree_symbols = ["│", "─", "┬", "├", "└"]
|
|
127
|
+
abbr_sid = true
|
|
128
|
+
theme = "Auto"
|
|
129
|
+
show_kthreads = true
|
|
130
|
+
|
|
131
|
+
[sort]
|
|
132
|
+
column = 0
|
|
133
|
+
order = "Ascending"
|
|
134
|
+
|
|
135
|
+
[docker]
|
|
136
|
+
path = "unix:///var/run/docker.sock"
|
|
137
|
+
|
|
138
|
+
[pager]
|
|
139
|
+
mode = "Auto"
|
|
140
|
+
detect_width = false
|
|
141
|
+
use_builtin = false
|
|
142
|
+
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
[pudb]
|
|
2
|
+
breakpoints_weight = 1
|
|
3
|
+
current_stack_frame = top
|
|
4
|
+
custom_shell =
|
|
5
|
+
custom_stringifier =
|
|
6
|
+
custom_theme =
|
|
7
|
+
default_variables_access_level = public
|
|
8
|
+
display = auto
|
|
9
|
+
hide_cmdline_win = False
|
|
10
|
+
hotkeys_breakpoints = B
|
|
11
|
+
hotkeys_code = C
|
|
12
|
+
hotkeys_stack = S
|
|
13
|
+
hotkeys_toggle_cmdline_focus = ctrl x
|
|
14
|
+
hotkeys_variables = V
|
|
15
|
+
line_numbers = False
|
|
16
|
+
prompt_on_quit = True
|
|
17
|
+
seen_welcome = e049
|
|
18
|
+
shell = ipython
|
|
19
|
+
sidebar_width = 0.5
|
|
20
|
+
stack_weight = 1
|
|
21
|
+
stringifier = default
|
|
22
|
+
theme = dark vim
|
|
23
|
+
variables_weight = 1
|
|
24
|
+
wrap_variables = True
|
|
25
|
+
|
|
@@ -0,0 +1,147 @@
|
|
|
1
|
+
configuration {
|
|
2
|
+
/* modi: "window,run,ssh";*/
|
|
3
|
+
/* font: "mono 12";*/
|
|
4
|
+
/* location: 0;*/
|
|
5
|
+
/* yoffset: 0;*/
|
|
6
|
+
/* xoffset: 0;*/
|
|
7
|
+
/* fixed-num-lines: true;*/
|
|
8
|
+
/* show-icons: false;*/
|
|
9
|
+
/* terminal: "rofi-sensible-terminal";*/
|
|
10
|
+
/* ssh-client: "ssh";*/
|
|
11
|
+
/* ssh-command: "{terminal} -e {ssh-client} {host} [-p {port}]";*/
|
|
12
|
+
/* run-command: "{cmd}";*/
|
|
13
|
+
/* run-list-command: "";*/
|
|
14
|
+
/* run-shell-command: "{terminal} -e {cmd}";*/
|
|
15
|
+
/* window-command: "wmctrl -i -R {window}";*/
|
|
16
|
+
/* window-match-fields: "all";*/
|
|
17
|
+
/* icon-theme: ;*/
|
|
18
|
+
/* drun-match-fields: "name,generic,exec,categories,keywords";*/
|
|
19
|
+
/* drun-categories: ;*/
|
|
20
|
+
/* drun-show-actions: false;*/
|
|
21
|
+
/* drun-display-format: "{name} [<span weight='light' size='small'><i>({generic})</i></span>]";*/
|
|
22
|
+
/* drun-url-launcher: "xdg-open";*/
|
|
23
|
+
/* disable-history: false;*/
|
|
24
|
+
/* ignored-prefixes: "";*/
|
|
25
|
+
/* sort: false;*/
|
|
26
|
+
/* sorting-method: "normal";*/
|
|
27
|
+
/* case-sensitive: false;*/
|
|
28
|
+
/* cycle: true;*/
|
|
29
|
+
/* sidebar-mode: false;*/
|
|
30
|
+
/* hover-select: false;*/
|
|
31
|
+
/* eh: 1;*/
|
|
32
|
+
/* auto-select: false;*/
|
|
33
|
+
/* parse-hosts: false;*/
|
|
34
|
+
/* parse-known-hosts: true;*/
|
|
35
|
+
/* combi-modi: "window,run";*/
|
|
36
|
+
/* matching: "normal";*/
|
|
37
|
+
/* tokenize: true;*/
|
|
38
|
+
/* m: "-5";*/
|
|
39
|
+
/* filter: ;*/
|
|
40
|
+
/* dpi: -1;*/
|
|
41
|
+
/* threads: 0;*/
|
|
42
|
+
/* scroll-method: 0;*/
|
|
43
|
+
/* window-format: "{w} {c} {t}";*/
|
|
44
|
+
/* click-to-exit: true;*/
|
|
45
|
+
/* theme: ;*/
|
|
46
|
+
/* max-history-size: 25;*/
|
|
47
|
+
/* combi-hide-mode-prefix: false;*/
|
|
48
|
+
/* matching-negate-char: '-' /* unsupported */;*/
|
|
49
|
+
/* cache-dir: ;*/
|
|
50
|
+
/* window-thumbnail: false;*/
|
|
51
|
+
/* drun-use-desktop-cache: false;*/
|
|
52
|
+
/* drun-reload-desktop-cache: false;*/
|
|
53
|
+
/* normalize-match: false;*/
|
|
54
|
+
/* steal-focus: false;*/
|
|
55
|
+
/* application-fallback-icon: ;*/
|
|
56
|
+
/* pid: "/run/user/1000/rofi.pid";*/
|
|
57
|
+
/* display-window: ;*/
|
|
58
|
+
/* display-windowcd: ;*/
|
|
59
|
+
/* display-run: ;*/
|
|
60
|
+
/* display-ssh: ;*/
|
|
61
|
+
/* display-drun: ;*/
|
|
62
|
+
/* display-combi: ;*/
|
|
63
|
+
/* display-keys: ;*/
|
|
64
|
+
/* display-filebrowser: ;*/
|
|
65
|
+
/* kb-primary-paste: "Control+V,Shift+Insert";*/
|
|
66
|
+
/* kb-secondary-paste: "Control+v,Insert";*/
|
|
67
|
+
/* kb-clear-line: "Control+w";*/
|
|
68
|
+
/* kb-move-front: "Control+a";*/
|
|
69
|
+
/* kb-move-end: "Control+e";*/
|
|
70
|
+
/* kb-move-word-back: "Alt+b,Control+Left";*/
|
|
71
|
+
/* kb-move-word-forward: "Alt+f,Control+Right";*/
|
|
72
|
+
/* kb-move-char-back: "Left,Control+b";*/
|
|
73
|
+
/* kb-move-char-forward: "Right,Control+f";*/
|
|
74
|
+
/* kb-remove-word-back: "Control+Alt+h,Control+BackSpace";*/
|
|
75
|
+
/* kb-remove-word-forward: "Control+Alt+d";*/
|
|
76
|
+
/* kb-remove-char-forward: "Delete,Control+d";*/
|
|
77
|
+
/* kb-remove-char-back: "BackSpace,Shift+BackSpace,Control+h";*/
|
|
78
|
+
/* kb-remove-to-eol: "Control+k";*/
|
|
79
|
+
/* kb-remove-to-sol: "Control+u";*/
|
|
80
|
+
/* kb-accept-entry: "Control+j,Control+m,Return,KP_Enter";*/
|
|
81
|
+
/* kb-accept-custom: "Control+Return";*/
|
|
82
|
+
/* kb-accept-custom-alt: "Control+Shift+Return";*/
|
|
83
|
+
/* kb-accept-alt: "Shift+Return";*/
|
|
84
|
+
/* kb-delete-entry: "Shift+Delete";*/
|
|
85
|
+
/* kb-mode-next: "Shift+Right,Control+Tab";*/
|
|
86
|
+
/* kb-mode-previous: "Shift+Left,Control+ISO_Left_Tab";*/
|
|
87
|
+
/* kb-mode-complete: "Control+l";*/
|
|
88
|
+
/* kb-row-left: "Control+Page_Up";*/
|
|
89
|
+
/* kb-row-right: "Control+Page_Down";*/
|
|
90
|
+
/* kb-row-up: "Up,Control+p,ISO_Left_Tab";*/
|
|
91
|
+
/* kb-row-down: "Down,Control+n";*/
|
|
92
|
+
/* kb-row-tab: "Tab";*/
|
|
93
|
+
/* kb-page-prev: "Page_Up";*/
|
|
94
|
+
/* kb-page-next: "Page_Down";*/
|
|
95
|
+
/* kb-row-first: "Home,KP_Home";*/
|
|
96
|
+
/* kb-row-last: "End,KP_End";*/
|
|
97
|
+
/* kb-row-select: "Control+space";*/
|
|
98
|
+
/* kb-screenshot: "Alt+S";*/
|
|
99
|
+
/* kb-ellipsize: "Alt+period";*/
|
|
100
|
+
/* kb-toggle-case-sensitivity: "grave,dead_grave";*/
|
|
101
|
+
/* kb-toggle-sort: "Alt+grave";*/
|
|
102
|
+
/* kb-cancel: "Escape,Control+g,Control+bracketleft";*/
|
|
103
|
+
/* kb-custom-1: "Alt+1";*/
|
|
104
|
+
/* kb-custom-2: "Alt+2";*/
|
|
105
|
+
/* kb-custom-3: "Alt+3";*/
|
|
106
|
+
/* kb-custom-4: "Alt+4";*/
|
|
107
|
+
/* kb-custom-5: "Alt+5";*/
|
|
108
|
+
/* kb-custom-6: "Alt+6";*/
|
|
109
|
+
/* kb-custom-7: "Alt+7";*/
|
|
110
|
+
/* kb-custom-8: "Alt+8";*/
|
|
111
|
+
/* kb-custom-9: "Alt+9";*/
|
|
112
|
+
/* kb-custom-10: "Alt+0";*/
|
|
113
|
+
/* kb-custom-11: "Alt+exclam";*/
|
|
114
|
+
/* kb-custom-12: "Alt+at";*/
|
|
115
|
+
/* kb-custom-13: "Alt+numbersign";*/
|
|
116
|
+
/* kb-custom-14: "Alt+dollar";*/
|
|
117
|
+
/* kb-custom-15: "Alt+percent";*/
|
|
118
|
+
/* kb-custom-16: "Alt+dead_circumflex";*/
|
|
119
|
+
/* kb-custom-17: "Alt+ampersand";*/
|
|
120
|
+
/* kb-custom-18: "Alt+asterisk";*/
|
|
121
|
+
/* kb-custom-19: "Alt+parenleft";*/
|
|
122
|
+
/* kb-select-1: "Super+1";*/
|
|
123
|
+
/* kb-select-2: "Super+2";*/
|
|
124
|
+
/* kb-select-3: "Super+3";*/
|
|
125
|
+
/* kb-select-4: "Super+4";*/
|
|
126
|
+
/* kb-select-5: "Super+5";*/
|
|
127
|
+
/* kb-select-6: "Super+6";*/
|
|
128
|
+
/* kb-select-7: "Super+7";*/
|
|
129
|
+
/* kb-select-8: "Super+8";*/
|
|
130
|
+
/* kb-select-9: "Super+9";*/
|
|
131
|
+
/* kb-select-10: "Super+0";*/
|
|
132
|
+
/* ml-row-left: "ScrollLeft";*/
|
|
133
|
+
/* ml-row-right: "ScrollRight";*/
|
|
134
|
+
/* ml-row-up: "ScrollUp";*/
|
|
135
|
+
/* ml-row-down: "ScrollDown";*/
|
|
136
|
+
/* me-select-entry: "MousePrimary";*/
|
|
137
|
+
/* me-accept-entry: "MouseDPrimary";*/
|
|
138
|
+
/* me-accept-custom: "Control+MouseDPrimary";*/
|
|
139
|
+
timeout {
|
|
140
|
+
action: "kb-cancel";
|
|
141
|
+
delay: 0;
|
|
142
|
+
}
|
|
143
|
+
filebrowser {
|
|
144
|
+
directories-first: true;
|
|
145
|
+
sorting-method: "name";
|
|
146
|
+
}
|
|
147
|
+
}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
|
|
2
|
+
# https://alacritty.org/config-alacritty.html
|
|
3
|
+
# https://alacritty.org/config-alacritty-bindings.html
|
|
4
|
+
# https://github.com/alacritty/alacritty/issues/6999#issuecomment-1765513924
|
|
5
|
+
# cargo install alacritty
|
|
6
|
+
|
|
7
|
+
import = [
|
|
8
|
+
"~/.config/alacritty/themes/themes/campbell.toml"
|
|
9
|
+
]
|
|
10
|
+
|
|
11
|
+
[font]
|
|
12
|
+
size = 14
|
|
13
|
+
|
|
14
|
+
[shell]
|
|
15
|
+
program = "/bin/bash"
|
|
16
|
+
|
|
17
|
+
[window]
|
|
18
|
+
dimensions = { columns = 1000, lines = 1000 }
|
|
19
|
+
startup_mode = "Fullscreen"
|
|
20
|
+
decorations = "None"
|
|
21
|
+
opacity = 0.99
|
|
22
|
+
decorations_theme_variant = "Dark"
|
|
23
|
+
resize_increments = true
|
|
24
|
+
|
|
25
|
+
[colors.primary]
|
|
26
|
+
background = "#000000"
|
|
27
|
+
|
|
28
|
+
[cursor]
|
|
29
|
+
style = {shape = "Beam", blinking = "Always"}
|
|
30
|
+
blink_interval = 150
|
|
31
|
+
blink_timeout = 0
|
|
32
|
+
thickness = 0.9
|
|
33
|
+
|
|
34
|
+
[keyboard]
|
|
35
|
+
#a = 1
|
|
36
|
+
bindings = [{key = "Enter", mods = "Alt", action = "ToggleFullscreen"},
|
|
37
|
+
{ key = "N", mods = "Control|Shift", action = "CreateNewWindow" },
|
|
38
|
+
{ key = "W", mods = "Control|Shift", action = "Quit" },
|
|
39
|
+
|
|
40
|
+
]
|
|
File without changes
|