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,51 @@
|
|
|
1
|
+
#!/bin/bash
|
|
2
|
+
#=======================================================================
|
|
3
|
+
# ๐ณ BROOT SHELL INTEGRATION ๐ณ
|
|
4
|
+
#=======================================================================
|
|
5
|
+
# This script was automatically generated by the broot program
|
|
6
|
+
# More information can be found in https://github.com/Canop/broot
|
|
7
|
+
#
|
|
8
|
+
# This function starts broot and executes the command it produces, if any.
|
|
9
|
+
# It's needed because some shell commands, like `cd`, have no useful effect
|
|
10
|
+
# if executed in a subshell.
|
|
11
|
+
|
|
12
|
+
function br {
|
|
13
|
+
#-----------------------------------------------------------------------
|
|
14
|
+
# Function to integrate broot with the shell environment
|
|
15
|
+
#-----------------------------------------------------------------------
|
|
16
|
+
local cmd cmd_file code
|
|
17
|
+
|
|
18
|
+
# Create temporary file for broot to write its command
|
|
19
|
+
cmd_file=$(mktemp)
|
|
20
|
+
|
|
21
|
+
# Run broot with the temporary command file
|
|
22
|
+
if broot --outcmd "$cmd_file" "$@"; then
|
|
23
|
+
# If broot exited successfully, read the command
|
|
24
|
+
cmd=$(<"$cmd_file")
|
|
25
|
+
|
|
26
|
+
# Clean up temporary file
|
|
27
|
+
rm -f "$cmd_file"
|
|
28
|
+
|
|
29
|
+
# Execute the command broot produced
|
|
30
|
+
eval "$cmd"
|
|
31
|
+
else
|
|
32
|
+
# Handle errors
|
|
33
|
+
code=$?
|
|
34
|
+
|
|
35
|
+
# Clean up temporary file
|
|
36
|
+
rm -f "$cmd_file"
|
|
37
|
+
|
|
38
|
+
# Return the exit code from broot
|
|
39
|
+
return "$code"
|
|
40
|
+
fi
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
#=======================================================================
|
|
44
|
+
# โน๏ธ USAGE:
|
|
45
|
+
# br [options]
|
|
46
|
+
#
|
|
47
|
+
# ๐ง EXAMPLES:
|
|
48
|
+
# br # Open broot in the current directory
|
|
49
|
+
# br /path/to/dir # Open broot in the specified directory
|
|
50
|
+
# br -h # Show broot help
|
|
51
|
+
#=======================================================================
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
|
|
2
|
+
# from https://github.com/Canop/broot/issues/159
|
|
3
|
+
# launch this function that wraps broot.
|
|
4
|
+
|
|
5
|
+
function br {
|
|
6
|
+
$tempFile = New-TemporaryFile
|
|
7
|
+
try {
|
|
8
|
+
$broot = $env:BROOT
|
|
9
|
+
if (-not $broot) {
|
|
10
|
+
$broot = 'broot'
|
|
11
|
+
}
|
|
12
|
+
& $broot --outcmd $tempFile $args
|
|
13
|
+
if ($LASTEXITCODE -ne 0) {
|
|
14
|
+
Write-Error "$broot exited with code $LASTEXITCODE"
|
|
15
|
+
return
|
|
16
|
+
}
|
|
17
|
+
$command = Get-Content $tempFile
|
|
18
|
+
if ($command) {
|
|
19
|
+
# broot returns extended-length paths but not all PowerShell/Windows
|
|
20
|
+
# versions might handle this so strip the '\\?'
|
|
21
|
+
Invoke-Expression $command.Replace("\\?\", "")
|
|
22
|
+
}
|
|
23
|
+
} finally {
|
|
24
|
+
Remove-Item -force $tempFile
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
$isDotSourced = $MyInvocation.InvocationName -eq '.' -or $MyInvocation.Line -eq ''
|
|
29
|
+
if (-not $isDotSourced) {
|
|
30
|
+
br $args
|
|
31
|
+
}
|
|
32
|
+
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
|
|
2
|
+
# style name or JSON path (default "auto")
|
|
3
|
+
style: "auto"
|
|
4
|
+
# show local files only; no network (TUI-mode only)
|
|
5
|
+
local: false
|
|
6
|
+
# mouse support (TUI-mode only)
|
|
7
|
+
mouse: false
|
|
8
|
+
# use pager to display markdown
|
|
9
|
+
pager: false
|
|
10
|
+
# word-wrap at width
|
|
11
|
+
width: 180
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
|
|
2
|
+
# AS PER https://github.com/bk138/gromit-mpx/blob/master/data/gromit-mpx.cfg
|
|
3
|
+
|
|
4
|
+
# Default gromit-mpx configuration
|
|
5
|
+
# taken from Totem's telestrator mode config
|
|
6
|
+
# added default entries
|
|
7
|
+
|
|
8
|
+
# Uncomment to set Hot key and/or Undo key to a custom value. Note that you can only specify single keysyms, not key combos.
|
|
9
|
+
# HOTKEY = "F9";
|
|
10
|
+
HOTKEY = "F9";
|
|
11
|
+
UNDOKEY = "F8";
|
|
12
|
+
|
|
13
|
+
"red Pen" = PEN (size=5 color="red");
|
|
14
|
+
"blue Pen" = "red Pen" (color="blue");
|
|
15
|
+
"yellow Pen" = "red Pen" (color="yellow");
|
|
16
|
+
"green Marker" = PEN (size=6 color="green" arrowsize=3);
|
|
17
|
+
"blue Pen" = "blue Arrow" (color="blue", arrowsize=2);
|
|
18
|
+
"red Rectangle" = RECT (color = "red");
|
|
19
|
+
"Eraser" = ERASER (size = 75);
|
|
20
|
+
"smoothed red line" = SMOOTH (color = "green" simplify=30 snap=10);
|
|
21
|
+
|
|
22
|
+
# "default" = "red Pen";
|
|
23
|
+
"default" = "smoothed red line";
|
|
24
|
+
# "default"[SHIFT] = "blue Pen";
|
|
25
|
+
"default"[SHIFT] = "red Rectangle";
|
|
26
|
+
"default"[CONTROL] = "blue Pen";
|
|
27
|
+
|
|
28
|
+
"default"[2] = "green Marker";
|
|
29
|
+
"default"[Button3] = "red Rectangle";
|
|
30
|
+
# "default"[Button4] = "Eraser";
|
|
31
|
+
|
|
32
|
+
"ELAN Touchscreen Pen (14)" = "red Pen";
|
|
33
|
+
# "SYNA801A:00" = "red Pen";
|
|
34
|
+
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
|
|
2
|
+
# theme = "dark_high_contrast"
|
|
3
|
+
theme = "ayu_evolve"
|
|
4
|
+
|
|
5
|
+
[editor]
|
|
6
|
+
# line-number = "relative"
|
|
7
|
+
mouse = true
|
|
8
|
+
#gutters = "spacer"
|
|
9
|
+
true-color = true
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
[editor.cursor-shape]
|
|
13
|
+
insert = "bar"
|
|
14
|
+
normal = "block"
|
|
15
|
+
select = "underline"
|
|
16
|
+
|
|
17
|
+
[editor.file-picker]
|
|
18
|
+
hidden = false
|
|
19
|
+
|
|
20
|
+
[editor.gutters]
|
|
21
|
+
layout = ["diff", "diagnostics", "line-numbers", "spacer"]
|
|
22
|
+
|
|
23
|
+
[editor.soft-wrap]
|
|
24
|
+
enable = true
|
|
25
|
+
max-wrap = 25 # increase value to reduce forced mid-word wrapping
|
|
26
|
+
max-indent-retain = 0
|
|
27
|
+
wrap-indicator = "" # set wrap-indicator to "" to hide it
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# adopted from https://github.com/helix-editor/helix/wiki/How-to-install-the-default-language-servers#python---pyright--ruff--black
|
|
2
|
+
# adopted from https://github.com/helix-editor/helix/discussions/6623
|
|
3
|
+
# You will need: npm install pyright -g; pip install ruff-lsp; pip install black
|
|
4
|
+
|
|
5
|
+
[[language]]
|
|
6
|
+
name = "python"
|
|
7
|
+
language-servers = [ "pyright", "ruff" ]
|
|
8
|
+
|
|
9
|
+
[language-server.pyright.config.python.analysis]
|
|
10
|
+
typeCheckingMode = "basic"
|
|
11
|
+
|
|
12
|
+
[language-server.ruff]
|
|
13
|
+
command = "ruff-lsp"
|
|
14
|
+
|
|
15
|
+
# https://docs.astral.sh/ruff/configuration/
|
|
16
|
+
# [language-server.ruff.config.settings]
|
|
17
|
+
# args = ["--ignore", "E501"]
|
|
18
|
+
# args = ["--ignore", "E701,E702,F541,E721"]
|
|
19
|
+
|
|
20
|
+
[language.formatter]
|
|
21
|
+
command = "black"
|
|
22
|
+
args = ["--line-length", "88", "--quiet", "-"]
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
# espanso configuration file
|
|
2
|
+
|
|
3
|
+
show_notifications: false
|
|
4
|
+
show_icon: false
|
|
5
|
+
search_shortcut: ALT+SHIFT+SPACE
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
# For a complete introduction, visit the official docs at: https://espanso.org/docs/
|
|
9
|
+
|
|
10
|
+
# You can use this file to define the global configuration options for espanso.
|
|
11
|
+
# These are the parameters that will be used by default on every application,
|
|
12
|
+
# but you can also override them on a per-application basis.
|
|
13
|
+
|
|
14
|
+
# To make customization easier, this file contains some of the commonly used
|
|
15
|
+
# parameters. Feel free to uncomment and tune them to fit your needs!
|
|
16
|
+
|
|
17
|
+
# --- Toggle key
|
|
18
|
+
|
|
19
|
+
# Customize the key used to disable and enable espanso (when double tapped)
|
|
20
|
+
# Available options: CTRL, SHIFT, ALT, CMD, OFF
|
|
21
|
+
# You can also specify the key variant, such as LEFT_CTRL, RIGHT_SHIFT, etc...
|
|
22
|
+
# toggle_key: ALT
|
|
23
|
+
# You can also disable the toggle key completely with
|
|
24
|
+
toggle_key: OFF
|
|
25
|
+
|
|
26
|
+
# --- Injection Backend
|
|
27
|
+
|
|
28
|
+
# Espanso supports multiple ways of injecting text into applications. Each of
|
|
29
|
+
# them has its quirks, therefore you may want to change it if you are having problems.
|
|
30
|
+
# By default, espanso uses the "Auto" backend which should work well in most cases,
|
|
31
|
+
# but you may want to try the "Clipboard" or "Inject" backend in case of issues.
|
|
32
|
+
# backend: Clipboard
|
|
33
|
+
|
|
34
|
+
# --- Auto-restart
|
|
35
|
+
|
|
36
|
+
# Enable/disable the config auto-reload after a file change is detected.
|
|
37
|
+
# auto_restart: false
|
|
38
|
+
|
|
39
|
+
# --- Clipboard threshold
|
|
40
|
+
|
|
41
|
+
# Because injecting long texts char-by-char is a slow operation, espanso automatically
|
|
42
|
+
# uses the clipboard if the text is longer than 'clipboard_threshold' characters.
|
|
43
|
+
# clipboard_threshold: 100
|
|
44
|
+
|
|
45
|
+
# For a list of all the available options, visit the official docs at: https://espanso.org/docs/
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
|
|
2
|
+
# espanso match file
|
|
3
|
+
|
|
4
|
+
# For a complete introduction, visit the official docs at: https://espanso.org/docs/
|
|
5
|
+
|
|
6
|
+
# You can use this file to define the base matches (aka snippets)
|
|
7
|
+
# that will be available in every application when using espanso.
|
|
8
|
+
|
|
9
|
+
# Matches are substitution rules: when you type the "trigger" string
|
|
10
|
+
# it gets replaced by the "replace" string.
|
|
11
|
+
matches:
|
|
12
|
+
# Simple text replacement
|
|
13
|
+
- trigger: ":email"
|
|
14
|
+
replace: "mathematician@usa.com"
|
|
15
|
+
|
|
16
|
+
# NOTE: espanso uses YAML to define matches, so pay attention to the indentation!
|
|
17
|
+
|
|
18
|
+
# But matches can also be dynamic:
|
|
19
|
+
|
|
20
|
+
# Print the current date
|
|
21
|
+
- trigger: ":date"
|
|
22
|
+
replace: "{{mydate}}"
|
|
23
|
+
vars:
|
|
24
|
+
- name: mydate
|
|
25
|
+
type: date
|
|
26
|
+
params:
|
|
27
|
+
format: "%m/%d/%Y"
|
|
28
|
+
|
|
29
|
+
# Print the output of a shell command
|
|
30
|
+
- trigger: ":shell"
|
|
31
|
+
replace: "{{output}}"
|
|
32
|
+
vars:
|
|
33
|
+
- name: output
|
|
34
|
+
type: shell
|
|
35
|
+
params:
|
|
36
|
+
cmd: "echo 'Hello from your shell'"
|
|
37
|
+
|
|
38
|
+
# as per https://github.com/bk138/gromit-mpx
|
|
39
|
+
- trigger: "qq"
|
|
40
|
+
replace: "{{output}}"
|
|
41
|
+
vars:
|
|
42
|
+
- name: output
|
|
43
|
+
type: shell
|
|
44
|
+
params:
|
|
45
|
+
cmd: "/usr/bin/flatpak run --branch=stable --arch=x86_64 --command=gromit-mpx net.christianbeier.Gromit-MPX --toggle"
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
- trigger: "ww"
|
|
49
|
+
replace: "{{output}}"
|
|
50
|
+
vars:
|
|
51
|
+
- name: output
|
|
52
|
+
type: shell
|
|
53
|
+
params:
|
|
54
|
+
cmd: "/usr/bin/flatpak run --branch=stable --arch=x86_64 --command=gromit-mpx net.christianbeier.Gromit-MPX --toggle --clear"
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
# And much more! For more information, visit the docs: https://espanso.org/docs/
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -0,0 +1,196 @@
|
|
|
1
|
+
# vim:ft=dircolors
|
|
2
|
+
# (This is not a dircolors file but it helps to highlight colors and comments)
|
|
3
|
+
|
|
4
|
+
# default values from dircolors
|
|
5
|
+
# (entries with a leading # are not implemented in lf)
|
|
6
|
+
# #no 00 # NORMAL
|
|
7
|
+
# fi 00 # FILE
|
|
8
|
+
# #rs 0 # RESET
|
|
9
|
+
# di 01;34 # DIR
|
|
10
|
+
# ln 01;36 # LINK
|
|
11
|
+
# #mh 00 # MULTIHARDLINK
|
|
12
|
+
# pi 40;33 # FIFO
|
|
13
|
+
# so 01;35 # SOCK
|
|
14
|
+
# #do 01;35 # DOOR
|
|
15
|
+
# bd 40;33;01 # BLK
|
|
16
|
+
# cd 40;33;01 # CHR
|
|
17
|
+
# or 40;31;01 # ORPHAN
|
|
18
|
+
# #mi 00 # MISSING
|
|
19
|
+
# su 37;41 # SETUID
|
|
20
|
+
# sg 30;43 # SETGID
|
|
21
|
+
# #ca 30;41 # CAPABILITY
|
|
22
|
+
# tw 30;42 # STICKY_OTHER_WRITABLE
|
|
23
|
+
# ow 34;42 # OTHER_WRITABLE
|
|
24
|
+
# st 37;44 # STICKY
|
|
25
|
+
# ex 01;32 # EXEC
|
|
26
|
+
|
|
27
|
+
# default values from lf (with matching order)
|
|
28
|
+
# ln 01;36 # LINK
|
|
29
|
+
# or 31;01 # ORPHAN
|
|
30
|
+
# tw 01;34 # STICKY_OTHER_WRITABLE
|
|
31
|
+
# ow 01;34 # OTHER_WRITABLE
|
|
32
|
+
# st 01;34 # STICKY
|
|
33
|
+
# di 01;34 # DIR
|
|
34
|
+
# pi 33 # FIFO
|
|
35
|
+
# so 01;35 # SOCK
|
|
36
|
+
# bd 33;01 # BLK
|
|
37
|
+
# cd 33;01 # CHR
|
|
38
|
+
# su 01;32 # SETUID
|
|
39
|
+
# sg 01;32 # SETGID
|
|
40
|
+
# ex 01;32 # EXEC
|
|
41
|
+
# fi 00 # FILE
|
|
42
|
+
|
|
43
|
+
# file types (with matching order)
|
|
44
|
+
# ln 01;36 # LINK
|
|
45
|
+
# or 31;01 # ORPHAN
|
|
46
|
+
# tw 34 # STICKY_OTHER_WRITABLE
|
|
47
|
+
# ow 34 # OTHER_WRITABLE
|
|
48
|
+
# st 01;34 # STICKY
|
|
49
|
+
# di 01;34 # DIR
|
|
50
|
+
# pi 33 # FIFO
|
|
51
|
+
# so 01;35 # SOCK
|
|
52
|
+
# bd 33;01 # BLK
|
|
53
|
+
# cd 33;01 # CHR
|
|
54
|
+
# su 01;32 # SETUID
|
|
55
|
+
# sg 01;32 # SETGID
|
|
56
|
+
# ex 01;32 # EXEC
|
|
57
|
+
# fi 00 # FILE
|
|
58
|
+
|
|
59
|
+
# copy from windows lfrc instead of the above
|
|
60
|
+
fi 00;37;40 # FILE
|
|
61
|
+
#rs 0 # RESET
|
|
62
|
+
di 01;38;44 # DIR
|
|
63
|
+
ln 03;33;48 # LINK
|
|
64
|
+
#mh 00 # MULTIHARDLINK
|
|
65
|
+
pi 03;33;40 # FIFO
|
|
66
|
+
so 04;34;43 # SOCK
|
|
67
|
+
#do 01;35 # DOOR
|
|
68
|
+
bd 05;35;40 # BLK
|
|
69
|
+
cd 01;30;45 # CHR
|
|
70
|
+
or 07;37;45 # ORPHAN
|
|
71
|
+
#mi 00 # MISSING
|
|
72
|
+
su 08;32;47 # SETUID
|
|
73
|
+
sg 09;32;40 # SETGID
|
|
74
|
+
#ca 30;41 # CAPABILITY
|
|
75
|
+
tw 01;33;41 # STICKY_OTHER_WRITABLE
|
|
76
|
+
ow 02;36;40 # OTHER_WRITABLE
|
|
77
|
+
st 03;37;40 # STICKY
|
|
78
|
+
ex 03;34;40 # EXEC
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+
# archives or compressed (dircolors defaults)
|
|
82
|
+
*.tar 01;31
|
|
83
|
+
*.tgz 01;31
|
|
84
|
+
*.arc 01;31
|
|
85
|
+
*.arj 01;31
|
|
86
|
+
*.taz 01;31
|
|
87
|
+
*.lha 01;31
|
|
88
|
+
*.lz4 01;31
|
|
89
|
+
*.lzh 01;31
|
|
90
|
+
*.lzma 01;31
|
|
91
|
+
*.tlz 01;31
|
|
92
|
+
*.txz 01;31
|
|
93
|
+
*.tzo 01;31
|
|
94
|
+
*.t7z 01;31
|
|
95
|
+
*.zip 01;31
|
|
96
|
+
*.z 01;31
|
|
97
|
+
*.dz 01;31
|
|
98
|
+
*.gz 01;31
|
|
99
|
+
*.lrz 01;31
|
|
100
|
+
*.lz 01;31
|
|
101
|
+
*.lzo 01;31
|
|
102
|
+
*.xz 01;31
|
|
103
|
+
*.zst 01;31
|
|
104
|
+
*.tzst 01;31
|
|
105
|
+
*.bz2 01;31
|
|
106
|
+
*.bz 01;31
|
|
107
|
+
*.tbz 01;31
|
|
108
|
+
*.tbz2 01;31
|
|
109
|
+
*.tz 01;31
|
|
110
|
+
*.deb 01;31
|
|
111
|
+
*.rpm 01;31
|
|
112
|
+
*.jar 01;31
|
|
113
|
+
*.war 01;31
|
|
114
|
+
*.ear 01;31
|
|
115
|
+
*.sar 01;31
|
|
116
|
+
*.rar 01;31
|
|
117
|
+
*.alz 01;31
|
|
118
|
+
*.ace 01;31
|
|
119
|
+
*.zoo 01;31
|
|
120
|
+
*.cpio 01;31
|
|
121
|
+
*.7z 01;31
|
|
122
|
+
*.rz 01;31
|
|
123
|
+
*.cab 01;31
|
|
124
|
+
*.wim 01;31
|
|
125
|
+
*.swm 01;31
|
|
126
|
+
*.dwm 01;31
|
|
127
|
+
*.esd 01;31
|
|
128
|
+
|
|
129
|
+
# image formats (dircolors defaults)
|
|
130
|
+
*.jpg 01;35
|
|
131
|
+
*.jpeg 01;35
|
|
132
|
+
*.mjpg 01;35
|
|
133
|
+
*.mjpeg 01;35
|
|
134
|
+
*.gif 01;35
|
|
135
|
+
*.bmp 01;35
|
|
136
|
+
*.pbm 01;35
|
|
137
|
+
*.pgm 01;35
|
|
138
|
+
*.ppm 01;35
|
|
139
|
+
*.tga 01;35
|
|
140
|
+
*.xbm 01;35
|
|
141
|
+
*.xpm 01;35
|
|
142
|
+
*.tif 01;35
|
|
143
|
+
*.tiff 01;35
|
|
144
|
+
*.png 01;35
|
|
145
|
+
*.svg 01;35
|
|
146
|
+
*.svgz 01;35
|
|
147
|
+
*.mng 01;35
|
|
148
|
+
*.pcx 01;35
|
|
149
|
+
*.mov 01;35
|
|
150
|
+
*.mpg 01;35
|
|
151
|
+
*.mpeg 01;35
|
|
152
|
+
*.m2v 01;35
|
|
153
|
+
*.mkv 01;35
|
|
154
|
+
*.webm 01;35
|
|
155
|
+
*.ogm 01;35
|
|
156
|
+
*.mp4 01;35
|
|
157
|
+
*.m4v 01;35
|
|
158
|
+
*.mp4v 01;35
|
|
159
|
+
*.vob 01;35
|
|
160
|
+
*.qt 01;35
|
|
161
|
+
*.nuv 01;35
|
|
162
|
+
*.wmv 01;35
|
|
163
|
+
*.asf 01;35
|
|
164
|
+
*.rm 01;35
|
|
165
|
+
*.rmvb 01;35
|
|
166
|
+
*.flc 01;35
|
|
167
|
+
*.avi 01;35
|
|
168
|
+
*.fli 01;35
|
|
169
|
+
*.flv 01;35
|
|
170
|
+
*.gl 01;35
|
|
171
|
+
*.dl 01;35
|
|
172
|
+
*.xcf 01;35
|
|
173
|
+
*.xwd 01;35
|
|
174
|
+
*.yuv 01;35
|
|
175
|
+
*.cgm 01;35
|
|
176
|
+
*.emf 01;35
|
|
177
|
+
*.ogv 01;35
|
|
178
|
+
*.ogx 01;35
|
|
179
|
+
|
|
180
|
+
# audio formats (dircolors defaults)
|
|
181
|
+
*.aac 00;36
|
|
182
|
+
*.au 00;36
|
|
183
|
+
*.flac 00;36
|
|
184
|
+
*.m4a 00;36
|
|
185
|
+
*.mid 00;36
|
|
186
|
+
*.midi 00;36
|
|
187
|
+
*.mka 00;36
|
|
188
|
+
*.mp3 00;36
|
|
189
|
+
*.mpc 00;36
|
|
190
|
+
*.ogg 00;36
|
|
191
|
+
*.ra 00;36
|
|
192
|
+
*.wav 00;36
|
|
193
|
+
*.oga 00;36
|
|
194
|
+
*.opus 00;36
|
|
195
|
+
*.spx 00;36
|
|
196
|
+
*.xspf 00;36
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
#!/bin/sh
|
|
2
|
+
# ๐ Fuzzy Finder with Nano Editor Integration
|
|
3
|
+
|
|
4
|
+
# ๐ Open selected file in nano
|
|
5
|
+
nano (~/scripts/fzf2g) # space used for precedence in execution
|
|
6
|
+
|
|
7
|
+
# ๐ก Alternative commands (commented):
|
|
8
|
+
# ๐ FZF with bat preview:
|
|
9
|
+
# fzf --ansi --preview-window 'right:60%' --preview 'bat --color=always --style=numbers,grid,header --line-range :300 {}'
|
|
10
|
+
|
|
11
|
+
# ๐ช Windows Git Bash version:
|
|
12
|
+
# & "C:\Program Files\Git\usr\bin\nano.exe" (fzf --ansi --preview-window 'right:60%' --preview 'bat --color=always --style=numbers,grid,header --line-range :300 {}')
|
|
13
|
+
|
|
14
|
+
# ๐ PowerShell script integration:
|
|
15
|
+
# fzf | ~/scripts/nano.ps1
|
|
16
|
+
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
#!/bin/sh
|
|
2
|
+
# ๐ LF File Manager Directory Change Integration
|
|
3
|
+
#
|
|
4
|
+
# Changes working directory in shell to last dir in lf on exit (adapted from ranger).
|
|
5
|
+
#
|
|
6
|
+
# ๐ Setup Instructions:
|
|
7
|
+
# LFCD="/path/to/lfcd.sh"
|
|
8
|
+
# if [ -f "$LFCD" ]; then
|
|
9
|
+
# source "$LFCD"
|
|
10
|
+
# fi
|
|
11
|
+
#
|
|
12
|
+
# โจ๏ธ Optional Keybinding:
|
|
13
|
+
# bind '"\C-o":"lfcd\C-m"' # bash
|
|
14
|
+
# bindkey -s '^o' 'lfcd\n' # zsh
|
|
15
|
+
#
|
|
16
|
+
lfcd () {
|
|
17
|
+
# ๐ Create temporary file for directory tracking
|
|
18
|
+
tmp="$(mktemp)"
|
|
19
|
+
lf -last-dir-path="$tmp" "$@"
|
|
20
|
+
if [ -f "$tmp" ]; then
|
|
21
|
+
dir="$(cat "$tmp")"
|
|
22
|
+
rm -f "$tmp"
|
|
23
|
+
if [ -d "$dir" ]; then
|
|
24
|
+
if [ "$dir" != "$(pwd)" ]; then
|
|
25
|
+
cd "$dir"
|
|
26
|
+
fi
|
|
27
|
+
fi
|
|
28
|
+
fi
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
# ๐ Create alias for quick access
|
|
32
|
+
alias lf="lfcd"
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
#!/bin/sh
|
|
2
|
+
# ๐ File Preview Script for LF File Manager
|
|
3
|
+
# Uses:
|
|
4
|
+
# ๐ผ๏ธ chafa, viu - Image preview
|
|
5
|
+
# ๐ pistol - General file preview
|
|
6
|
+
|
|
7
|
+
file=$1
|
|
8
|
+
width="$2"
|
|
9
|
+
height="$3"
|
|
10
|
+
x="$4"
|
|
11
|
+
y="$5"
|
|
12
|
+
default_x="1920"
|
|
13
|
+
default_y="1080"
|
|
14
|
+
|
|
15
|
+
# ๐ผ๏ธ Image File Handling
|
|
16
|
+
case "$file" in
|
|
17
|
+
*.jpg|*.jpeg|*.png|*.gif|*.bmp)
|
|
18
|
+
echo "$FIFO_UEBERZUG"
|
|
19
|
+
echo "x: $x, y: $y, width: $width, height: $height"
|
|
20
|
+
|
|
21
|
+
if [ -n "$x" ]; then
|
|
22
|
+
echo "๐ Dimensions provided by caller, passing to viu"
|
|
23
|
+
viu "$file" -x "$x" -y "$y" -w "$width" -h "$height"
|
|
24
|
+
echo "โ
Finished viu"
|
|
25
|
+
chafa "$file"
|
|
26
|
+
echo "โ
Finished chafa"
|
|
27
|
+
else
|
|
28
|
+
echo "โ ๏ธ No dimensions provided"
|
|
29
|
+
viu "$file"
|
|
30
|
+
fi
|
|
31
|
+
exit 0
|
|
32
|
+
;;
|
|
33
|
+
*)
|
|
34
|
+
# ๐ Default file preview
|
|
35
|
+
pistol "$file"
|
|
36
|
+
;;
|
|
37
|
+
esac
|