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.

Files changed (694) hide show
  1. machineconfig/__init__.py +0 -8
  2. machineconfig/cluster/__init__.py +0 -0
  3. machineconfig/cluster/cloud_manager.py +359 -0
  4. machineconfig/cluster/data_transfer.py +56 -0
  5. machineconfig/cluster/distribute.py +280 -0
  6. machineconfig/cluster/file_manager.py +238 -0
  7. machineconfig/cluster/job_params.py +148 -0
  8. machineconfig/cluster/loader_runner.py +150 -0
  9. machineconfig/cluster/remote_machine.py +281 -0
  10. machineconfig/cluster/script_execution.py +209 -0
  11. machineconfig/cluster/script_notify_upon_completion.py +63 -0
  12. machineconfig/cluster/self_ssh.py +59 -0
  13. machineconfig/cluster/session_managers.py +183 -0
  14. machineconfig/cluster/templates/__init__.py +0 -0
  15. machineconfig/cluster/templates/cli_click.py +104 -0
  16. machineconfig/cluster/templates/cli_gooey.py +119 -0
  17. machineconfig/cluster/templates/cli_trogon.py +21 -0
  18. machineconfig/cluster/templates/f.py +4 -0
  19. machineconfig/cluster/templates/run_cloud.py +52 -0
  20. machineconfig/cluster/templates/run_cluster.py +69 -0
  21. machineconfig/cluster/templates/run_remote.py +67 -0
  22. machineconfig/cluster/templates/utils.py +37 -0
  23. machineconfig/jobs/__pycache__/__init__.cpython-311.pyc +0 -0
  24. machineconfig/jobs/linux/msc/lid.sh +26 -0
  25. machineconfig/jobs/linux/msc/network.sh +39 -0
  26. machineconfig/jobs/python/__pycache__/__init__.cpython-311.pyc +0 -0
  27. machineconfig/jobs/python/__pycache__/check_installations.cpython-311.pyc +0 -0
  28. machineconfig/jobs/python/__pycache__/checkout_version.cpython-311.pyc +0 -0
  29. machineconfig/jobs/python/__pycache__/python_ve_symlink.cpython-311.pyc +0 -0
  30. machineconfig/jobs/python/archive/python_tools.txt +12 -0
  31. machineconfig/jobs/python/check_installations.py +26 -11
  32. machineconfig/jobs/python/checkout_version.py +24 -13
  33. machineconfig/jobs/python/create_zellij_template.py +4 -4
  34. machineconfig/jobs/python/python_cargo_build_share.py +13 -4
  35. machineconfig/jobs/python/python_ve_symlink.py +15 -4
  36. machineconfig/jobs/python/vscode/__pycache__/api.cpython-311.pyc +0 -0
  37. machineconfig/jobs/python/vscode/__pycache__/link_ve.cpython-311.pyc +0 -0
  38. machineconfig/jobs/python/vscode/api.py +48 -0
  39. machineconfig/jobs/python/vscode/link_ve.py +64 -0
  40. machineconfig/jobs/python/vscode/select_interpreter.py +84 -0
  41. machineconfig/jobs/python/vscode/sync_code.py +60 -0
  42. machineconfig/jobs/python_custom_installers/__pycache__/__init__.cpython-311.pyc +0 -0
  43. machineconfig/jobs/python_custom_installers/__pycache__/hx.cpython-311.pyc +0 -0
  44. machineconfig/jobs/python_custom_installers/archive/ngrok.py +62 -0
  45. machineconfig/jobs/python_custom_installers/dev/aider.py +37 -0
  46. machineconfig/jobs/python_custom_installers/dev/alacritty.py +72 -0
  47. machineconfig/jobs/python_custom_installers/dev/brave.py +67 -0
  48. machineconfig/jobs/python_custom_installers/dev/bypass_paywall.py +50 -0
  49. machineconfig/jobs/python_custom_installers/dev/code.py +62 -0
  50. machineconfig/jobs/python_custom_installers/dev/cursor.py +67 -0
  51. machineconfig/jobs/python_custom_installers/dev/docker.py +70 -0
  52. machineconfig/jobs/python_custom_installers/dev/docker_desktop.py +77 -0
  53. machineconfig/jobs/python_custom_installers/dev/espanso.py +82 -0
  54. machineconfig/jobs/python_custom_installers/dev/goes.py +59 -0
  55. machineconfig/jobs/python_custom_installers/dev/lvim.py +76 -0
  56. machineconfig/jobs/python_custom_installers/dev/nerdfont.py +67 -0
  57. machineconfig/jobs/python_custom_installers/dev/redis.py +69 -0
  58. machineconfig/jobs/python_custom_installers/dev/reverse_proxy.md +31 -0
  59. machineconfig/jobs/python_custom_installers/dev/warp-cli.py +71 -0
  60. machineconfig/jobs/python_custom_installers/dev/wezterm.py +71 -0
  61. machineconfig/jobs/python_custom_installers/gh.py +46 -4
  62. machineconfig/jobs/python_custom_installers/hx.py +103 -18
  63. machineconfig/jobs/python_custom_installers/scripts/linux/brave.sh +52 -0
  64. machineconfig/jobs/python_custom_installers/scripts/linux/docker.sh +140 -0
  65. machineconfig/jobs/python_custom_installers/scripts/linux/docker_start.sh +48 -0
  66. machineconfig/jobs/python_custom_installers/scripts/linux/edge.sh +47 -0
  67. machineconfig/jobs/python_custom_installers/scripts/linux/nerdfont.sh +64 -0
  68. machineconfig/jobs/python_custom_installers/scripts/linux/pgsql.sh +53 -0
  69. machineconfig/jobs/python_custom_installers/scripts/linux/redis.sh +76 -0
  70. machineconfig/jobs/python_custom_installers/scripts/linux/timescaledb.sh +91 -0
  71. machineconfig/jobs/python_custom_installers/scripts/linux/vscode.sh +66 -0
  72. machineconfig/jobs/python_custom_installers/scripts/linux/warp-cli.sh +77 -0
  73. machineconfig/jobs/python_custom_installers/scripts/linux/wezterm.sh +43 -0
  74. machineconfig/jobs/python_generic_installers/__pycache__/__init__.cpython-311.pyc +0 -0
  75. machineconfig/jobs/python_generic_installers/config.json +267 -0
  76. machineconfig/jobs/python_generic_installers/dev/config.archive.json +18 -0
  77. machineconfig/jobs/python_generic_installers/dev/config.json +394 -0
  78. machineconfig/jobs/python_linux_installers/__pycache__/__init__.cpython-311.pyc +0 -0
  79. machineconfig/jobs/python_linux_installers/archive/config.json +10 -0
  80. machineconfig/jobs/python_linux_installers/config.json +74 -0
  81. machineconfig/jobs/python_linux_installers/dev/config.json +138 -0
  82. machineconfig/jobs/python_windows_installers/__pycache__/__init__.cpython-311.pyc +0 -0
  83. machineconfig/jobs/python_windows_installers/archive/file.json +11 -0
  84. machineconfig/jobs/python_windows_installers/config.json +50 -0
  85. machineconfig/jobs/python_windows_installers/dev/config.json +3 -0
  86. machineconfig/jobs/windows/archive/archive_pygraphviz.ps1 +14 -0
  87. machineconfig/jobs/windows/archive/openssh-server_add_key.ps1 +7 -0
  88. machineconfig/jobs/windows/archive/openssh-server_copy-ssh-id.ps1 +14 -0
  89. machineconfig/jobs/windows/start_terminal.ps1 +6 -0
  90. machineconfig/jobs/windows/startup_file.cmd +2 -0
  91. machineconfig/profile/__pycache__/__init__.cpython-311.pyc +0 -0
  92. machineconfig/profile/__pycache__/create.cpython-311.pyc +0 -0
  93. machineconfig/profile/__pycache__/shell.cpython-311.pyc +0 -0
  94. machineconfig/profile/create.py +47 -13
  95. machineconfig/profile/create_hardlinks.py +42 -12
  96. machineconfig/profile/records/generic/shares.toml +5 -0
  97. machineconfig/profile/records/linux/apps_summary_report.csv +48 -0
  98. machineconfig/profile/records/linux/apps_summary_report.md +49 -0
  99. machineconfig/profile/records/windows/apps_summary_report.csv +1 -0
  100. machineconfig/profile/records/windows/apps_summary_report.md +2 -0
  101. machineconfig/profile/shell.py +62 -11
  102. machineconfig/scripts/__pycache__/__init__.cpython-311.pyc +0 -0
  103. machineconfig/scripts/cloud/init.sh +128 -0
  104. machineconfig/scripts/linux/activate_ve +87 -0
  105. machineconfig/scripts/linux/archive/tmate_conn +12 -0
  106. machineconfig/scripts/linux/archive/tmate_start +12 -0
  107. machineconfig/scripts/linux/archive/transfer_wsl_win +5 -0
  108. machineconfig/scripts/linux/checkout_versions +8 -0
  109. machineconfig/scripts/linux/choose_wezterm_theme +9 -0
  110. machineconfig/scripts/linux/cloud_copy +9 -0
  111. machineconfig/scripts/linux/cloud_manager +8 -0
  112. machineconfig/scripts/linux/cloud_mount +24 -0
  113. machineconfig/scripts/linux/cloud_repo_sync +22 -0
  114. machineconfig/scripts/linux/cloud_sync +24 -0
  115. machineconfig/scripts/linux/croshell +24 -0
  116. machineconfig/scripts/linux/devops +24 -0
  117. machineconfig/scripts/linux/fire +46 -0
  118. machineconfig/scripts/linux/ftpx +8 -0
  119. machineconfig/scripts/linux/fzf2g +21 -0
  120. machineconfig/scripts/linux/fzfag +17 -0
  121. machineconfig/scripts/linux/fzffg +25 -0
  122. machineconfig/scripts/linux/fzfg +23 -0
  123. machineconfig/scripts/linux/fzfrga +21 -0
  124. machineconfig/scripts/linux/gh_models +11 -0
  125. machineconfig/scripts/linux/kill_process +10 -0
  126. machineconfig/scripts/linux/mount_drive +128 -0
  127. machineconfig/scripts/linux/mount_nfs +62 -0
  128. machineconfig/scripts/linux/mount_nw_drive +72 -0
  129. machineconfig/scripts/linux/mount_smb +3 -0
  130. machineconfig/scripts/linux/programs +21 -0
  131. machineconfig/scripts/linux/repos +24 -0
  132. machineconfig/scripts/linux/scheduler +8 -0
  133. machineconfig/scripts/linux/share_cloud.sh +81 -0
  134. machineconfig/scripts/linux/share_nfs +49 -0
  135. machineconfig/scripts/linux/share_smb +1 -0
  136. machineconfig/scripts/linux/skrg +4 -0
  137. machineconfig/scripts/linux/start_docker +23 -0
  138. machineconfig/scripts/linux/start_slidev +23 -0
  139. machineconfig/scripts/linux/start_terminals +12 -0
  140. machineconfig/scripts/linux/switch_ip +20 -0
  141. machineconfig/scripts/linux/url2md +10 -0
  142. machineconfig/scripts/linux/z_ls +104 -0
  143. machineconfig/scripts/python/.mypy_cache/.gitignore +2 -0
  144. machineconfig/scripts/python/.mypy_cache/3.11/@plugins_snapshot.json +1 -0
  145. machineconfig/scripts/python/.mypy_cache/3.11/__future__.data.json +1 -0
  146. machineconfig/scripts/python/.mypy_cache/3.11/__future__.meta.json +1 -0
  147. machineconfig/scripts/python/.mypy_cache/3.11/_ast.data.json +1 -0
  148. machineconfig/scripts/python/.mypy_cache/3.11/_ast.meta.json +1 -0
  149. machineconfig/scripts/python/.mypy_cache/3.11/_bz2.data.json +1 -0
  150. machineconfig/scripts/python/.mypy_cache/3.11/_bz2.meta.json +1 -0
  151. machineconfig/scripts/python/.mypy_cache/3.11/_codecs.data.json +1 -0
  152. machineconfig/scripts/python/.mypy_cache/3.11/_codecs.meta.json +1 -0
  153. machineconfig/scripts/python/.mypy_cache/3.11/_collections_abc.data.json +1 -0
  154. machineconfig/scripts/python/.mypy_cache/3.11/_collections_abc.meta.json +1 -0
  155. machineconfig/scripts/python/.mypy_cache/3.11/_compression.data.json +1 -0
  156. machineconfig/scripts/python/.mypy_cache/3.11/_compression.meta.json +1 -0
  157. machineconfig/scripts/python/.mypy_cache/3.11/_decimal.data.json +1 -0
  158. machineconfig/scripts/python/.mypy_cache/3.11/_decimal.meta.json +1 -0
  159. machineconfig/scripts/python/.mypy_cache/3.11/_frozen_importlib.data.json +1 -0
  160. machineconfig/scripts/python/.mypy_cache/3.11/_frozen_importlib.meta.json +1 -0
  161. machineconfig/scripts/python/.mypy_cache/3.11/_frozen_importlib_external.data.json +1 -0
  162. machineconfig/scripts/python/.mypy_cache/3.11/_frozen_importlib_external.meta.json +1 -0
  163. machineconfig/scripts/python/.mypy_cache/3.11/_io.data.json +1 -0
  164. machineconfig/scripts/python/.mypy_cache/3.11/_io.meta.json +1 -0
  165. machineconfig/scripts/python/.mypy_cache/3.11/_locale.data.json +1 -0
  166. machineconfig/scripts/python/.mypy_cache/3.11/_locale.meta.json +1 -0
  167. machineconfig/scripts/python/.mypy_cache/3.11/_stat.data.json +1 -0
  168. machineconfig/scripts/python/.mypy_cache/3.11/_stat.meta.json +1 -0
  169. machineconfig/scripts/python/.mypy_cache/3.11/_struct.data.json +1 -0
  170. machineconfig/scripts/python/.mypy_cache/3.11/_struct.meta.json +1 -0
  171. machineconfig/scripts/python/.mypy_cache/3.11/_thread.data.json +1 -0
  172. machineconfig/scripts/python/.mypy_cache/3.11/_thread.meta.json +1 -0
  173. machineconfig/scripts/python/.mypy_cache/3.11/_typeshed/__init__.data.json +1 -0
  174. machineconfig/scripts/python/.mypy_cache/3.11/_typeshed/__init__.meta.json +1 -0
  175. machineconfig/scripts/python/.mypy_cache/3.11/_typeshed/importlib.data.json +1 -0
  176. machineconfig/scripts/python/.mypy_cache/3.11/_typeshed/importlib.meta.json +1 -0
  177. machineconfig/scripts/python/.mypy_cache/3.11/_warnings.data.json +1 -0
  178. machineconfig/scripts/python/.mypy_cache/3.11/_warnings.meta.json +1 -0
  179. machineconfig/scripts/python/.mypy_cache/3.11/_weakref.data.json +1 -0
  180. machineconfig/scripts/python/.mypy_cache/3.11/_weakref.meta.json +1 -0
  181. machineconfig/scripts/python/.mypy_cache/3.11/_weakrefset.data.json +1 -0
  182. machineconfig/scripts/python/.mypy_cache/3.11/_weakrefset.meta.json +1 -0
  183. machineconfig/scripts/python/.mypy_cache/3.11/abc.data.json +1 -0
  184. machineconfig/scripts/python/.mypy_cache/3.11/abc.meta.json +1 -0
  185. machineconfig/scripts/python/.mypy_cache/3.11/argparse.data.json +1 -0
  186. machineconfig/scripts/python/.mypy_cache/3.11/argparse.meta.json +1 -0
  187. machineconfig/scripts/python/.mypy_cache/3.11/ast.data.json +1 -0
  188. machineconfig/scripts/python/.mypy_cache/3.11/ast.meta.json +1 -0
  189. machineconfig/scripts/python/.mypy_cache/3.11/binascii.data.json +1 -0
  190. machineconfig/scripts/python/.mypy_cache/3.11/binascii.meta.json +1 -0
  191. machineconfig/scripts/python/.mypy_cache/3.11/builtins.data.json +1 -0
  192. machineconfig/scripts/python/.mypy_cache/3.11/builtins.meta.json +1 -0
  193. machineconfig/scripts/python/.mypy_cache/3.11/bz2.data.json +1 -0
  194. machineconfig/scripts/python/.mypy_cache/3.11/bz2.meta.json +1 -0
  195. machineconfig/scripts/python/.mypy_cache/3.11/calendar.data.json +1 -0
  196. machineconfig/scripts/python/.mypy_cache/3.11/calendar.meta.json +1 -0
  197. machineconfig/scripts/python/.mypy_cache/3.11/codecs.data.json +1 -0
  198. machineconfig/scripts/python/.mypy_cache/3.11/codecs.meta.json +1 -0
  199. machineconfig/scripts/python/.mypy_cache/3.11/collections/__init__.data.json +1 -0
  200. machineconfig/scripts/python/.mypy_cache/3.11/collections/__init__.meta.json +1 -0
  201. machineconfig/scripts/python/.mypy_cache/3.11/collections/abc.data.json +1 -0
  202. machineconfig/scripts/python/.mypy_cache/3.11/collections/abc.meta.json +1 -0
  203. machineconfig/scripts/python/.mypy_cache/3.11/configparser.data.json +1 -0
  204. machineconfig/scripts/python/.mypy_cache/3.11/configparser.meta.json +1 -0
  205. machineconfig/scripts/python/.mypy_cache/3.11/contextlib.data.json +1 -0
  206. machineconfig/scripts/python/.mypy_cache/3.11/contextlib.meta.json +1 -0
  207. machineconfig/scripts/python/.mypy_cache/3.11/dataclasses.data.json +1 -0
  208. machineconfig/scripts/python/.mypy_cache/3.11/dataclasses.meta.json +1 -0
  209. machineconfig/scripts/python/.mypy_cache/3.11/datetime.data.json +1 -0
  210. machineconfig/scripts/python/.mypy_cache/3.11/datetime.meta.json +1 -0
  211. machineconfig/scripts/python/.mypy_cache/3.11/decimal.data.json +1 -0
  212. machineconfig/scripts/python/.mypy_cache/3.11/decimal.meta.json +1 -0
  213. machineconfig/scripts/python/.mypy_cache/3.11/dis.data.json +1 -0
  214. machineconfig/scripts/python/.mypy_cache/3.11/dis.meta.json +1 -0
  215. machineconfig/scripts/python/.mypy_cache/3.11/email/__init__.data.json +1 -0
  216. machineconfig/scripts/python/.mypy_cache/3.11/email/__init__.meta.json +1 -0
  217. machineconfig/scripts/python/.mypy_cache/3.11/email/_policybase.data.json +1 -0
  218. machineconfig/scripts/python/.mypy_cache/3.11/email/_policybase.meta.json +1 -0
  219. machineconfig/scripts/python/.mypy_cache/3.11/email/charset.data.json +1 -0
  220. machineconfig/scripts/python/.mypy_cache/3.11/email/charset.meta.json +1 -0
  221. machineconfig/scripts/python/.mypy_cache/3.11/email/contentmanager.data.json +1 -0
  222. machineconfig/scripts/python/.mypy_cache/3.11/email/contentmanager.meta.json +1 -0
  223. machineconfig/scripts/python/.mypy_cache/3.11/email/errors.data.json +1 -0
  224. machineconfig/scripts/python/.mypy_cache/3.11/email/errors.meta.json +1 -0
  225. machineconfig/scripts/python/.mypy_cache/3.11/email/header.data.json +1 -0
  226. machineconfig/scripts/python/.mypy_cache/3.11/email/header.meta.json +1 -0
  227. machineconfig/scripts/python/.mypy_cache/3.11/email/message.data.json +1 -0
  228. machineconfig/scripts/python/.mypy_cache/3.11/email/message.meta.json +1 -0
  229. machineconfig/scripts/python/.mypy_cache/3.11/email/policy.data.json +1 -0
  230. machineconfig/scripts/python/.mypy_cache/3.11/email/policy.meta.json +1 -0
  231. machineconfig/scripts/python/.mypy_cache/3.11/enum.data.json +1 -0
  232. machineconfig/scripts/python/.mypy_cache/3.11/enum.meta.json +1 -0
  233. machineconfig/scripts/python/.mypy_cache/3.11/fnmatch.data.json +1 -0
  234. machineconfig/scripts/python/.mypy_cache/3.11/fnmatch.meta.json +1 -0
  235. machineconfig/scripts/python/.mypy_cache/3.11/functools.data.json +1 -0
  236. machineconfig/scripts/python/.mypy_cache/3.11/functools.meta.json +1 -0
  237. machineconfig/scripts/python/.mypy_cache/3.11/gc.data.json +1 -0
  238. machineconfig/scripts/python/.mypy_cache/3.11/gc.meta.json +1 -0
  239. machineconfig/scripts/python/.mypy_cache/3.11/genericpath.data.json +1 -0
  240. machineconfig/scripts/python/.mypy_cache/3.11/genericpath.meta.json +1 -0
  241. machineconfig/scripts/python/.mypy_cache/3.11/getpass.data.json +1 -0
  242. machineconfig/scripts/python/.mypy_cache/3.11/getpass.meta.json +1 -0
  243. machineconfig/scripts/python/.mypy_cache/3.11/git/__init__.data.json +1 -0
  244. machineconfig/scripts/python/.mypy_cache/3.11/git/__init__.meta.json +1 -0
  245. machineconfig/scripts/python/.mypy_cache/3.11/git/cmd.data.json +1 -0
  246. machineconfig/scripts/python/.mypy_cache/3.11/git/cmd.meta.json +1 -0
  247. machineconfig/scripts/python/.mypy_cache/3.11/git/compat.data.json +1 -0
  248. machineconfig/scripts/python/.mypy_cache/3.11/git/compat.meta.json +1 -0
  249. machineconfig/scripts/python/.mypy_cache/3.11/git/config.data.json +1 -0
  250. machineconfig/scripts/python/.mypy_cache/3.11/git/config.meta.json +1 -0
  251. machineconfig/scripts/python/.mypy_cache/3.11/git/db.data.json +1 -0
  252. machineconfig/scripts/python/.mypy_cache/3.11/git/db.meta.json +1 -0
  253. machineconfig/scripts/python/.mypy_cache/3.11/git/diff.data.json +1 -0
  254. machineconfig/scripts/python/.mypy_cache/3.11/git/diff.meta.json +1 -0
  255. machineconfig/scripts/python/.mypy_cache/3.11/git/exc.data.json +1 -0
  256. machineconfig/scripts/python/.mypy_cache/3.11/git/exc.meta.json +1 -0
  257. machineconfig/scripts/python/.mypy_cache/3.11/git/index/__init__.data.json +1 -0
  258. machineconfig/scripts/python/.mypy_cache/3.11/git/index/__init__.meta.json +1 -0
  259. machineconfig/scripts/python/.mypy_cache/3.11/git/index/base.data.json +1 -0
  260. machineconfig/scripts/python/.mypy_cache/3.11/git/index/base.meta.json +1 -0
  261. machineconfig/scripts/python/.mypy_cache/3.11/git/index/fun.data.json +1 -0
  262. machineconfig/scripts/python/.mypy_cache/3.11/git/index/fun.meta.json +1 -0
  263. machineconfig/scripts/python/.mypy_cache/3.11/git/index/typ.data.json +1 -0
  264. machineconfig/scripts/python/.mypy_cache/3.11/git/index/typ.meta.json +1 -0
  265. machineconfig/scripts/python/.mypy_cache/3.11/git/index/util.data.json +1 -0
  266. machineconfig/scripts/python/.mypy_cache/3.11/git/index/util.meta.json +1 -0
  267. machineconfig/scripts/python/.mypy_cache/3.11/git/objects/__init__.data.json +1 -0
  268. machineconfig/scripts/python/.mypy_cache/3.11/git/objects/__init__.meta.json +1 -0
  269. machineconfig/scripts/python/.mypy_cache/3.11/git/objects/base.data.json +1 -0
  270. machineconfig/scripts/python/.mypy_cache/3.11/git/objects/base.meta.json +1 -0
  271. machineconfig/scripts/python/.mypy_cache/3.11/git/objects/blob.data.json +1 -0
  272. machineconfig/scripts/python/.mypy_cache/3.11/git/objects/blob.meta.json +1 -0
  273. machineconfig/scripts/python/.mypy_cache/3.11/git/objects/commit.data.json +1 -0
  274. machineconfig/scripts/python/.mypy_cache/3.11/git/objects/commit.meta.json +1 -0
  275. machineconfig/scripts/python/.mypy_cache/3.11/git/objects/fun.data.json +1 -0
  276. machineconfig/scripts/python/.mypy_cache/3.11/git/objects/fun.meta.json +1 -0
  277. machineconfig/scripts/python/.mypy_cache/3.11/git/objects/submodule/__init__.data.json +1 -0
  278. machineconfig/scripts/python/.mypy_cache/3.11/git/objects/submodule/__init__.meta.json +1 -0
  279. machineconfig/scripts/python/.mypy_cache/3.11/git/objects/submodule/base.data.json +1 -0
  280. machineconfig/scripts/python/.mypy_cache/3.11/git/objects/submodule/base.meta.json +1 -0
  281. machineconfig/scripts/python/.mypy_cache/3.11/git/objects/submodule/root.data.json +1 -0
  282. machineconfig/scripts/python/.mypy_cache/3.11/git/objects/submodule/root.meta.json +1 -0
  283. machineconfig/scripts/python/.mypy_cache/3.11/git/objects/submodule/util.data.json +1 -0
  284. machineconfig/scripts/python/.mypy_cache/3.11/git/objects/submodule/util.meta.json +1 -0
  285. machineconfig/scripts/python/.mypy_cache/3.11/git/objects/tag.data.json +1 -0
  286. machineconfig/scripts/python/.mypy_cache/3.11/git/objects/tag.meta.json +1 -0
  287. machineconfig/scripts/python/.mypy_cache/3.11/git/objects/tree.data.json +1 -0
  288. machineconfig/scripts/python/.mypy_cache/3.11/git/objects/tree.meta.json +1 -0
  289. machineconfig/scripts/python/.mypy_cache/3.11/git/objects/util.data.json +1 -0
  290. machineconfig/scripts/python/.mypy_cache/3.11/git/objects/util.meta.json +1 -0
  291. machineconfig/scripts/python/.mypy_cache/3.11/git/refs/__init__.data.json +1 -0
  292. machineconfig/scripts/python/.mypy_cache/3.11/git/refs/__init__.meta.json +1 -0
  293. machineconfig/scripts/python/.mypy_cache/3.11/git/refs/head.data.json +1 -0
  294. machineconfig/scripts/python/.mypy_cache/3.11/git/refs/head.meta.json +1 -0
  295. machineconfig/scripts/python/.mypy_cache/3.11/git/refs/log.data.json +1 -0
  296. machineconfig/scripts/python/.mypy_cache/3.11/git/refs/log.meta.json +1 -0
  297. machineconfig/scripts/python/.mypy_cache/3.11/git/refs/reference.data.json +1 -0
  298. machineconfig/scripts/python/.mypy_cache/3.11/git/refs/reference.meta.json +1 -0
  299. machineconfig/scripts/python/.mypy_cache/3.11/git/refs/remote.data.json +1 -0
  300. machineconfig/scripts/python/.mypy_cache/3.11/git/refs/remote.meta.json +1 -0
  301. machineconfig/scripts/python/.mypy_cache/3.11/git/refs/symbolic.data.json +1 -0
  302. machineconfig/scripts/python/.mypy_cache/3.11/git/refs/symbolic.meta.json +1 -0
  303. machineconfig/scripts/python/.mypy_cache/3.11/git/refs/tag.data.json +1 -0
  304. machineconfig/scripts/python/.mypy_cache/3.11/git/refs/tag.meta.json +1 -0
  305. machineconfig/scripts/python/.mypy_cache/3.11/git/remote.data.json +1 -0
  306. machineconfig/scripts/python/.mypy_cache/3.11/git/remote.meta.json +1 -0
  307. machineconfig/scripts/python/.mypy_cache/3.11/git/repo/__init__.data.json +1 -0
  308. machineconfig/scripts/python/.mypy_cache/3.11/git/repo/__init__.meta.json +1 -0
  309. machineconfig/scripts/python/.mypy_cache/3.11/git/repo/base.data.json +1 -0
  310. machineconfig/scripts/python/.mypy_cache/3.11/git/repo/base.meta.json +1 -0
  311. machineconfig/scripts/python/.mypy_cache/3.11/git/repo/fun.data.json +1 -0
  312. machineconfig/scripts/python/.mypy_cache/3.11/git/repo/fun.meta.json +1 -0
  313. machineconfig/scripts/python/.mypy_cache/3.11/git/types.data.json +1 -0
  314. machineconfig/scripts/python/.mypy_cache/3.11/git/types.meta.json +1 -0
  315. machineconfig/scripts/python/.mypy_cache/3.11/git/util.data.json +1 -0
  316. machineconfig/scripts/python/.mypy_cache/3.11/git/util.meta.json +1 -0
  317. machineconfig/scripts/python/.mypy_cache/3.11/glob.data.json +1 -0
  318. machineconfig/scripts/python/.mypy_cache/3.11/glob.meta.json +1 -0
  319. machineconfig/scripts/python/.mypy_cache/3.11/gzip.data.json +1 -0
  320. machineconfig/scripts/python/.mypy_cache/3.11/gzip.meta.json +1 -0
  321. machineconfig/scripts/python/.mypy_cache/3.11/importlib/__init__.data.json +1 -0
  322. machineconfig/scripts/python/.mypy_cache/3.11/importlib/__init__.meta.json +1 -0
  323. machineconfig/scripts/python/.mypy_cache/3.11/importlib/_abc.data.json +1 -0
  324. machineconfig/scripts/python/.mypy_cache/3.11/importlib/_abc.meta.json +1 -0
  325. machineconfig/scripts/python/.mypy_cache/3.11/importlib/_bootstrap.data.json +1 -0
  326. machineconfig/scripts/python/.mypy_cache/3.11/importlib/_bootstrap.meta.json +1 -0
  327. machineconfig/scripts/python/.mypy_cache/3.11/importlib/_bootstrap_external.data.json +1 -0
  328. machineconfig/scripts/python/.mypy_cache/3.11/importlib/_bootstrap_external.meta.json +1 -0
  329. machineconfig/scripts/python/.mypy_cache/3.11/importlib/abc.data.json +1 -0
  330. machineconfig/scripts/python/.mypy_cache/3.11/importlib/abc.meta.json +1 -0
  331. machineconfig/scripts/python/.mypy_cache/3.11/importlib/machinery.data.json +1 -0
  332. machineconfig/scripts/python/.mypy_cache/3.11/importlib/machinery.meta.json +1 -0
  333. machineconfig/scripts/python/.mypy_cache/3.11/importlib/metadata/__init__.data.json +1 -0
  334. machineconfig/scripts/python/.mypy_cache/3.11/importlib/metadata/__init__.meta.json +1 -0
  335. machineconfig/scripts/python/.mypy_cache/3.11/importlib/metadata/_meta.data.json +1 -0
  336. machineconfig/scripts/python/.mypy_cache/3.11/importlib/metadata/_meta.meta.json +1 -0
  337. machineconfig/scripts/python/.mypy_cache/3.11/importlib/readers.data.json +1 -0
  338. machineconfig/scripts/python/.mypy_cache/3.11/importlib/readers.meta.json +1 -0
  339. machineconfig/scripts/python/.mypy_cache/3.11/importlib/resources/__init__.data.json +1 -0
  340. machineconfig/scripts/python/.mypy_cache/3.11/importlib/resources/__init__.meta.json +1 -0
  341. machineconfig/scripts/python/.mypy_cache/3.11/importlib/resources/_common.data.json +1 -0
  342. machineconfig/scripts/python/.mypy_cache/3.11/importlib/resources/_common.meta.json +1 -0
  343. machineconfig/scripts/python/.mypy_cache/3.11/importlib/resources/abc.data.json +1 -0
  344. machineconfig/scripts/python/.mypy_cache/3.11/importlib/resources/abc.meta.json +1 -0
  345. machineconfig/scripts/python/.mypy_cache/3.11/inspect.data.json +1 -0
  346. machineconfig/scripts/python/.mypy_cache/3.11/inspect.meta.json +1 -0
  347. machineconfig/scripts/python/.mypy_cache/3.11/io.data.json +1 -0
  348. machineconfig/scripts/python/.mypy_cache/3.11/io.meta.json +1 -0
  349. machineconfig/scripts/python/.mypy_cache/3.11/itertools.data.json +1 -0
  350. machineconfig/scripts/python/.mypy_cache/3.11/itertools.meta.json +1 -0
  351. machineconfig/scripts/python/.mypy_cache/3.11/locale.data.json +1 -0
  352. machineconfig/scripts/python/.mypy_cache/3.11/locale.meta.json +1 -0
  353. machineconfig/scripts/python/.mypy_cache/3.11/logging/__init__.data.json +1 -0
  354. machineconfig/scripts/python/.mypy_cache/3.11/logging/__init__.meta.json +1 -0
  355. machineconfig/scripts/python/.mypy_cache/3.11/mimetypes.data.json +1 -0
  356. machineconfig/scripts/python/.mypy_cache/3.11/mimetypes.meta.json +1 -0
  357. machineconfig/scripts/python/.mypy_cache/3.11/mmap.data.json +1 -0
  358. machineconfig/scripts/python/.mypy_cache/3.11/mmap.meta.json +1 -0
  359. machineconfig/scripts/python/.mypy_cache/3.11/numbers.data.json +1 -0
  360. machineconfig/scripts/python/.mypy_cache/3.11/numbers.meta.json +1 -0
  361. machineconfig/scripts/python/.mypy_cache/3.11/opcode.data.json +1 -0
  362. machineconfig/scripts/python/.mypy_cache/3.11/opcode.meta.json +1 -0
  363. machineconfig/scripts/python/.mypy_cache/3.11/os/__init__.data.json +1 -0
  364. machineconfig/scripts/python/.mypy_cache/3.11/os/__init__.meta.json +1 -0
  365. machineconfig/scripts/python/.mypy_cache/3.11/os/path.data.json +1 -0
  366. machineconfig/scripts/python/.mypy_cache/3.11/os/path.meta.json +1 -0
  367. machineconfig/scripts/python/.mypy_cache/3.11/pathlib.data.json +1 -0
  368. machineconfig/scripts/python/.mypy_cache/3.11/pathlib.meta.json +1 -0
  369. machineconfig/scripts/python/.mypy_cache/3.11/platform.data.json +1 -0
  370. machineconfig/scripts/python/.mypy_cache/3.11/platform.meta.json +1 -0
  371. machineconfig/scripts/python/.mypy_cache/3.11/posixpath.data.json +1 -0
  372. machineconfig/scripts/python/.mypy_cache/3.11/posixpath.meta.json +1 -0
  373. machineconfig/scripts/python/.mypy_cache/3.11/re.data.json +1 -0
  374. machineconfig/scripts/python/.mypy_cache/3.11/re.meta.json +1 -0
  375. machineconfig/scripts/python/.mypy_cache/3.11/resource.data.json +1 -0
  376. machineconfig/scripts/python/.mypy_cache/3.11/resource.meta.json +1 -0
  377. machineconfig/scripts/python/.mypy_cache/3.11/shlex.data.json +1 -0
  378. machineconfig/scripts/python/.mypy_cache/3.11/shlex.meta.json +1 -0
  379. machineconfig/scripts/python/.mypy_cache/3.11/shutil.data.json +1 -0
  380. machineconfig/scripts/python/.mypy_cache/3.11/shutil.meta.json +1 -0
  381. machineconfig/scripts/python/.mypy_cache/3.11/signal.data.json +1 -0
  382. machineconfig/scripts/python/.mypy_cache/3.11/signal.meta.json +1 -0
  383. machineconfig/scripts/python/.mypy_cache/3.11/src/__init__.data.json +1 -0
  384. machineconfig/scripts/python/.mypy_cache/3.11/src/__init__.meta.json +1 -0
  385. machineconfig/scripts/python/.mypy_cache/3.11/src/machineconfig/__init__.data.json +1 -0
  386. machineconfig/scripts/python/.mypy_cache/3.11/src/machineconfig/__init__.meta.json +1 -0
  387. machineconfig/scripts/python/.mypy_cache/3.11/src/machineconfig/scripts/__init__.data.json +1 -0
  388. machineconfig/scripts/python/.mypy_cache/3.11/src/machineconfig/scripts/__init__.meta.json +1 -0
  389. machineconfig/scripts/python/.mypy_cache/3.11/src/machineconfig/scripts/python/__init__.data.json +1 -0
  390. machineconfig/scripts/python/.mypy_cache/3.11/src/machineconfig/scripts/python/__init__.meta.json +1 -0
  391. machineconfig/scripts/python/.mypy_cache/3.11/sre_compile.data.json +1 -0
  392. machineconfig/scripts/python/.mypy_cache/3.11/sre_compile.meta.json +1 -0
  393. machineconfig/scripts/python/.mypy_cache/3.11/sre_constants.data.json +1 -0
  394. machineconfig/scripts/python/.mypy_cache/3.11/sre_constants.meta.json +1 -0
  395. machineconfig/scripts/python/.mypy_cache/3.11/sre_parse.data.json +1 -0
  396. machineconfig/scripts/python/.mypy_cache/3.11/sre_parse.meta.json +1 -0
  397. machineconfig/scripts/python/.mypy_cache/3.11/stat.data.json +1 -0
  398. machineconfig/scripts/python/.mypy_cache/3.11/stat.meta.json +1 -0
  399. machineconfig/scripts/python/.mypy_cache/3.11/string.data.json +1 -0
  400. machineconfig/scripts/python/.mypy_cache/3.11/string.meta.json +1 -0
  401. machineconfig/scripts/python/.mypy_cache/3.11/struct.data.json +1 -0
  402. machineconfig/scripts/python/.mypy_cache/3.11/struct.meta.json +1 -0
  403. machineconfig/scripts/python/.mypy_cache/3.11/subprocess.data.json +1 -0
  404. machineconfig/scripts/python/.mypy_cache/3.11/subprocess.meta.json +1 -0
  405. machineconfig/scripts/python/.mypy_cache/3.11/sys/__init__.data.json +1 -0
  406. machineconfig/scripts/python/.mypy_cache/3.11/sys/__init__.meta.json +1 -0
  407. machineconfig/scripts/python/.mypy_cache/3.11/tarfile.data.json +1 -0
  408. machineconfig/scripts/python/.mypy_cache/3.11/tarfile.meta.json +1 -0
  409. machineconfig/scripts/python/.mypy_cache/3.11/tempfile.data.json +1 -0
  410. machineconfig/scripts/python/.mypy_cache/3.11/tempfile.meta.json +1 -0
  411. machineconfig/scripts/python/.mypy_cache/3.11/textwrap.data.json +1 -0
  412. machineconfig/scripts/python/.mypy_cache/3.11/textwrap.meta.json +1 -0
  413. machineconfig/scripts/python/.mypy_cache/3.11/threading.data.json +1 -0
  414. machineconfig/scripts/python/.mypy_cache/3.11/threading.meta.json +1 -0
  415. machineconfig/scripts/python/.mypy_cache/3.11/time.data.json +1 -0
  416. machineconfig/scripts/python/.mypy_cache/3.11/time.meta.json +1 -0
  417. machineconfig/scripts/python/.mypy_cache/3.11/types.data.json +1 -0
  418. machineconfig/scripts/python/.mypy_cache/3.11/types.meta.json +1 -0
  419. machineconfig/scripts/python/.mypy_cache/3.11/typing.data.json +1 -0
  420. machineconfig/scripts/python/.mypy_cache/3.11/typing.meta.json +1 -0
  421. machineconfig/scripts/python/.mypy_cache/3.11/typing_extensions.data.json +1 -0
  422. machineconfig/scripts/python/.mypy_cache/3.11/typing_extensions.meta.json +1 -0
  423. machineconfig/scripts/python/.mypy_cache/3.11/urllib/__init__.data.json +1 -0
  424. machineconfig/scripts/python/.mypy_cache/3.11/urllib/__init__.meta.json +1 -0
  425. machineconfig/scripts/python/.mypy_cache/3.11/urllib/parse.data.json +1 -0
  426. machineconfig/scripts/python/.mypy_cache/3.11/urllib/parse.meta.json +1 -0
  427. machineconfig/scripts/python/.mypy_cache/3.11/uuid.data.json +1 -0
  428. machineconfig/scripts/python/.mypy_cache/3.11/uuid.meta.json +1 -0
  429. machineconfig/scripts/python/.mypy_cache/3.11/warnings.data.json +1 -0
  430. machineconfig/scripts/python/.mypy_cache/3.11/warnings.meta.json +1 -0
  431. machineconfig/scripts/python/.mypy_cache/3.11/weakref.data.json +1 -0
  432. machineconfig/scripts/python/.mypy_cache/3.11/weakref.meta.json +1 -0
  433. machineconfig/scripts/python/.mypy_cache/3.11/zipfile/__init__.data.json +1 -0
  434. machineconfig/scripts/python/.mypy_cache/3.11/zipfile/__init__.meta.json +1 -0
  435. machineconfig/scripts/python/.mypy_cache/3.11/zlib.data.json +1 -0
  436. machineconfig/scripts/python/.mypy_cache/3.11/zlib.meta.json +1 -0
  437. machineconfig/scripts/python/.mypy_cache/CACHEDIR.TAG +3 -0
  438. machineconfig/scripts/python/__pycache__/__init__.cpython-311.pyc +0 -0
  439. machineconfig/scripts/python/__pycache__/cloud_copy.cpython-311.pyc +0 -0
  440. machineconfig/scripts/python/__pycache__/cloud_mount.cpython-311.pyc +0 -0
  441. machineconfig/scripts/python/__pycache__/cloud_repo_sync.cpython-311.pyc +0 -0
  442. machineconfig/scripts/python/__pycache__/cloud_sync.cpython-311.pyc +0 -0
  443. machineconfig/scripts/python/__pycache__/croshell.cpython-311.pyc +0 -0
  444. machineconfig/scripts/python/__pycache__/devops.cpython-311.pyc +0 -0
  445. machineconfig/scripts/python/__pycache__/devops_backup_retrieve.cpython-311.pyc +0 -0
  446. machineconfig/scripts/python/__pycache__/devops_devapps_install.cpython-311.pyc +0 -0
  447. machineconfig/scripts/python/__pycache__/devops_update_repos.cpython-311.pyc +0 -0
  448. machineconfig/scripts/python/__pycache__/fire_jobs.cpython-311.pyc +0 -0
  449. machineconfig/scripts/python/__pycache__/gh_models.cpython-311.pyc +0 -0
  450. machineconfig/scripts/python/__pycache__/repos.cpython-311.pyc +0 -0
  451. machineconfig/scripts/python/__pycache__/url2md.cpython-311.pyc +0 -0
  452. machineconfig/scripts/python/__pycache__/viewer.cpython-311.pyc +0 -0
  453. machineconfig/scripts/python/__pycache__/vscode_api.cpython-311.pyc +0 -0
  454. machineconfig/scripts/python/archive/im2text.py +36 -0
  455. machineconfig/scripts/python/archive/tmate_conn.py +44 -0
  456. machineconfig/scripts/python/archive/tmate_start.py +48 -0
  457. machineconfig/scripts/python/choose_wezterm_theme.py +23 -4
  458. machineconfig/scripts/python/cloud_copy.py +131 -29
  459. machineconfig/scripts/python/cloud_manager.py +55 -2
  460. machineconfig/scripts/python/cloud_mount.py +43 -4
  461. machineconfig/scripts/python/cloud_repo_sync.py +114 -103
  462. machineconfig/scripts/python/cloud_sync.py +36 -220
  463. machineconfig/scripts/python/croshell.py +102 -32
  464. machineconfig/scripts/python/devops.py +143 -42
  465. machineconfig/scripts/python/devops_add_identity.py +112 -9
  466. machineconfig/scripts/python/devops_add_ssh_key.py +170 -15
  467. machineconfig/scripts/python/devops_backup_retrieve.py +132 -14
  468. machineconfig/scripts/python/devops_devapps_install.py +33 -11
  469. machineconfig/scripts/python/devops_update_repos.py +36 -29
  470. machineconfig/scripts/python/dotfile.py +8 -3
  471. machineconfig/scripts/python/fire_jobs.py +145 -289
  472. machineconfig/scripts/python/ftpx.py +76 -18
  473. machineconfig/scripts/python/get_zellij_cmd.py +14 -0
  474. machineconfig/scripts/python/gh_models.py +72 -25
  475. machineconfig/scripts/python/helpers/__init__.py +0 -0
  476. machineconfig/scripts/python/helpers/__pycache__/__init__.cpython-311.pyc +0 -0
  477. machineconfig/scripts/python/helpers/__pycache__/cloud_helpers.cpython-311.pyc +0 -0
  478. machineconfig/scripts/python/helpers/__pycache__/helpers2.cpython-311.pyc +0 -0
  479. machineconfig/scripts/python/helpers/__pycache__/helpers4.cpython-311.pyc +0 -0
  480. machineconfig/scripts/python/helpers/cloud_helpers.py +134 -0
  481. machineconfig/scripts/python/helpers/helpers2.py +149 -0
  482. machineconfig/scripts/python/helpers/helpers4.py +178 -0
  483. machineconfig/scripts/python/helpers/helpers5.py +50 -0
  484. machineconfig/scripts/python/helpers/repo_sync_helpers.py +126 -0
  485. machineconfig/scripts/python/mount_nfs.py +46 -15
  486. machineconfig/scripts/python/mount_nw_drive.py +22 -10
  487. machineconfig/scripts/python/mount_ssh.py +28 -12
  488. machineconfig/scripts/python/onetimeshare.py +23 -15
  489. machineconfig/scripts/python/pomodoro.py +38 -24
  490. machineconfig/scripts/python/repos.py +29 -32
  491. machineconfig/scripts/python/scheduler.py +19 -18
  492. machineconfig/scripts/python/snapshot.py +14 -6
  493. machineconfig/scripts/python/start_slidev.py +24 -32
  494. machineconfig/scripts/python/start_terminals.py +23 -10
  495. machineconfig/scripts/python/viewer.py +53 -0
  496. machineconfig/scripts/python/viewer_template.py +140 -0
  497. machineconfig/scripts/python/wifi_conn.py +20 -12
  498. machineconfig/scripts/python/wsl_windows_transfer.py +18 -10
  499. machineconfig/scripts/windows/activate_ve.ps1 +54 -0
  500. machineconfig/scripts/windows/archive/gource2vid.ps1 +14 -0
  501. machineconfig/scripts/windows/archive/im2text.ps1 +27 -0
  502. machineconfig/scripts/windows/archive/secure_pull.ps1 +46 -0
  503. machineconfig/scripts/windows/archive/secure_push.ps1 +85 -0
  504. machineconfig/scripts/windows/archive/tmate_conn.ps1 +7 -0
  505. machineconfig/scripts/windows/checkout_version.ps1 +6 -0
  506. machineconfig/scripts/windows/choose_wezterm_theme.ps1 +20 -0
  507. machineconfig/scripts/windows/cloud_copy.ps1 +17 -0
  508. machineconfig/scripts/windows/cloud_manager.ps1 +8 -0
  509. machineconfig/scripts/windows/cloud_mount.ps1 +25 -0
  510. machineconfig/scripts/windows/cloud_repo_sync.ps1 +8 -0
  511. machineconfig/scripts/windows/cloud_sync.ps1 +21 -0
  512. machineconfig/scripts/windows/croshell.ps1 +40 -0
  513. machineconfig/scripts/windows/devops.ps1 +32 -0
  514. machineconfig/scripts/windows/dotfile.ps1 +9 -0
  515. machineconfig/scripts/windows/fire.ps1 +33 -0
  516. machineconfig/scripts/windows/ftpx.ps1 +5 -0
  517. machineconfig/scripts/windows/fzfb.ps1 +3 -0
  518. machineconfig/scripts/windows/fzfg.ps1 +2 -0
  519. machineconfig/scripts/windows/fzfrga.bat +20 -0
  520. machineconfig/scripts/windows/gpt.ps1 +23 -0
  521. machineconfig/scripts/windows/grep.ps1 +2 -0
  522. machineconfig/scripts/windows/kill_process.ps1 +8 -0
  523. machineconfig/scripts/windows/mount_nfs.ps1 +44 -0
  524. machineconfig/scripts/windows/mount_nw.ps1 +9 -0
  525. machineconfig/scripts/windows/mount_smb.ps1 +2 -0
  526. machineconfig/scripts/windows/mount_ssh.ps1 +17 -0
  527. machineconfig/scripts/windows/nano.ps1 +3 -0
  528. machineconfig/scripts/windows/neofetch.ps1 +2 -0
  529. machineconfig/scripts/windows/pomodoro.ps1 +8 -0
  530. machineconfig/scripts/windows/py2exe.ps1 +12 -0
  531. machineconfig/scripts/windows/reload_path.ps1 +3 -0
  532. machineconfig/scripts/windows/repos.ps1 +27 -0
  533. machineconfig/scripts/windows/scheduler.ps1 +6 -0
  534. machineconfig/scripts/windows/share_cloud.cmd +34 -0
  535. machineconfig/scripts/windows/share_nfs.ps1 +0 -0
  536. machineconfig/scripts/windows/share_smb.ps1 +22 -0
  537. machineconfig/scripts/windows/snapshot.ps1 +5 -0
  538. machineconfig/scripts/windows/start_slidev.ps1 +21 -0
  539. machineconfig/scripts/windows/start_terminals.ps1 +22 -0
  540. machineconfig/scripts/windows/unlock_bitlocker.ps1 +10 -0
  541. machineconfig/scripts/windows/utils/op_script_delete.ps1 +7 -0
  542. machineconfig/scripts/windows/wifi_conn.ps1 +7 -0
  543. machineconfig/scripts/windows/wsl_rdp_windows_port_forwarding.ps1 +46 -0
  544. machineconfig/scripts/windows/wsl_ssh_windows_port_forwarding.ps1 +76 -0
  545. machineconfig/scripts/windows/wsl_windows_transfer.ps1 +7 -0
  546. machineconfig/settings/__pycache__/__init__.cpython-311.pyc +0 -0
  547. machineconfig/settings/broot/br.sh +51 -0
  548. machineconfig/settings/broot/brootcd.ps1 +32 -0
  549. machineconfig/settings/broot/conf.toml +5 -0
  550. machineconfig/settings/glow/glow.yml +11 -0
  551. machineconfig/settings/gromit-mpx/gromit-mpx.cfg +34 -0
  552. machineconfig/settings/helix/config.toml +27 -0
  553. machineconfig/settings/helix/languages.toml +22 -0
  554. machineconfig/settings/keras/keras.json +6 -0
  555. machineconfig/settings/keyboard/espanso/config/default.yml +45 -0
  556. machineconfig/settings/keyboard/espanso/match/base.yml +57 -0
  557. machineconfig/settings/keyboard/kanata/kanata.kbd +0 -0
  558. machineconfig/settings/lf/linux/autocall/delete.sh +0 -0
  559. machineconfig/settings/lf/linux/autocall/on-cd.sh +0 -0
  560. machineconfig/settings/lf/linux/autocall/on-quit.sh +0 -0
  561. machineconfig/settings/lf/linux/autocall/open.sh +0 -0
  562. machineconfig/settings/lf/linux/autocall/paste.sh +0 -0
  563. machineconfig/settings/lf/linux/autocall/pre-cd.sh +0 -0
  564. machineconfig/settings/lf/linux/autocall/rename.sh +0 -0
  565. machineconfig/settings/lf/linux/colors +196 -0
  566. machineconfig/settings/lf/linux/exe/cleaner.sh +7 -0
  567. machineconfig/settings/lf/linux/exe/fzf_nano.sh +16 -0
  568. machineconfig/settings/lf/linux/exe/leftpane_previewer.sh +5 -0
  569. machineconfig/settings/lf/linux/exe/lfcd.sh +32 -0
  570. machineconfig/settings/lf/linux/exe/previewer.sh +37 -0
  571. machineconfig/settings/lf/linux/exe/previewer_archive.sh +155 -0
  572. machineconfig/settings/lf/linux/icons +357 -0
  573. machineconfig/settings/lf/linux/lfrc +226 -0
  574. machineconfig/settings/lf/windows/autocall/delete.ps1 +0 -0
  575. machineconfig/settings/lf/windows/autocall/on-cd.ps1 +0 -0
  576. machineconfig/settings/lf/windows/autocall/on-quit.ps1 +0 -0
  577. machineconfig/settings/lf/windows/autocall/open.ps1 +0 -0
  578. machineconfig/settings/lf/windows/autocall/paste.ps1 +0 -0
  579. machineconfig/settings/lf/windows/autocall/pre-cd.ps1 +0 -0
  580. machineconfig/settings/lf/windows/autocall/rename.ps1 +0 -0
  581. machineconfig/settings/lf/windows/cd_tere.ps1 +4 -0
  582. machineconfig/settings/lf/windows/cd_zoxide.ps1 +4 -0
  583. machineconfig/settings/lf/windows/cd_zoxide2.ps1 +4 -0
  584. machineconfig/settings/lf/windows/colors +159 -0
  585. machineconfig/settings/lf/windows/fzf_edit.ps1 +6 -0
  586. machineconfig/settings/lf/windows/icons +357 -0
  587. machineconfig/settings/lf/windows/leftpane_previewer.ps1 +3 -0
  588. machineconfig/settings/lf/windows/lfcd.ps1 +35 -0
  589. machineconfig/settings/lf/windows/lfrc +133 -0
  590. machineconfig/settings/lf/windows/mkdir.ps1 +3 -0
  591. machineconfig/settings/lf/windows/mkfile.ps1 +3 -0
  592. machineconfig/settings/lf/windows/previewer.ps1 +7 -0
  593. machineconfig/settings/lf/windows/tst.ps1 +1 -0
  594. machineconfig/settings/linters/.flake8 +24 -0
  595. machineconfig/settings/linters/.mypy.ini +29 -0
  596. machineconfig/settings/linters/.pylintrc +91 -0
  597. machineconfig/settings/linters/.ruff.toml +77 -0
  598. machineconfig/settings/linters/.ruff_cache/.gitignore +2 -0
  599. machineconfig/settings/linters/.ruff_cache/CACHEDIR.TAG +1 -0
  600. machineconfig/settings/lvim/linux/config.lua +0 -0
  601. machineconfig/settings/lvim/windows/archive/config_additional.lua +39 -0
  602. machineconfig/settings/lvim/windows/lua/user/custom_config.lua +13 -0
  603. machineconfig/settings/mprocs/windows/mprocs.yaml +55 -0
  604. machineconfig/settings/mprocs/windows/other +12 -0
  605. machineconfig/settings/pistol/pistol.conf +8 -0
  606. machineconfig/settings/presenterm/config.yaml +76 -0
  607. machineconfig/settings/procs/.procs.toml +142 -0
  608. machineconfig/settings/pudb/pudb.cfg +25 -0
  609. machineconfig/settings/rofi/config.rasi +4 -0
  610. machineconfig/settings/rofi/config_default.rasi +147 -0
  611. machineconfig/settings/shells/alacritty/alacritty.toml +40 -0
  612. machineconfig/settings/shells/alacritty/alacritty.yml +0 -0
  613. machineconfig/settings/shells/bash/.inputrc +3 -0
  614. machineconfig/settings/shells/bash/init.sh +66 -0
  615. machineconfig/settings/shells/hyper/.hyper.js +201 -0
  616. machineconfig/settings/shells/ipy/profiles/default/__init__.py +0 -0
  617. machineconfig/settings/shells/ipy/profiles/default/__pycache__/__init__.cpython-311.pyc +0 -0
  618. machineconfig/settings/shells/ipy/profiles/default/startup/__init__.py +0 -0
  619. machineconfig/settings/shells/ipy/profiles/default/startup/__pycache__/__init__.cpython-311.pyc +0 -0
  620. machineconfig/settings/shells/ipy/profiles/default/startup/__pycache__/playext.cpython-311.pyc +0 -0
  621. machineconfig/settings/shells/ipy/profiles/default/startup/playext.py +83 -0
  622. machineconfig/settings/shells/kitty/kitty.conf +1476 -0
  623. machineconfig/settings/shells/nushell/config.nu +36 -0
  624. machineconfig/settings/shells/nushell/env.nu +13 -0
  625. machineconfig/settings/shells/pwsh/init.ps1 +88 -0
  626. machineconfig/settings/shells/pwsh/profile.ps1 +0 -0
  627. machineconfig/settings/shells/starship/starship.toml +58 -0
  628. machineconfig/settings/shells/vtm/settings.xml +297 -0
  629. machineconfig/settings/shells/wezterm/wezterm.lua +193 -0
  630. machineconfig/settings/shells/wt/settings.json +526 -0
  631. machineconfig/settings/streamlit/config.toml +22 -0
  632. machineconfig/settings/svim/linux/init.toml +48 -0
  633. machineconfig/settings/svim/windows/init.toml +48 -0
  634. machineconfig/settings/tere/terecd.ps1 +8 -0
  635. machineconfig/settings/tere/terecd.sh +8 -0
  636. machineconfig/settings/tmux/.tmate.conf +3 -0
  637. machineconfig/settings/tmux/.tmux.conf +6 -0
  638. machineconfig/settings/wsl/.wslconfig +35 -0
  639. machineconfig/settings/yazi/keymap.toml +0 -0
  640. machineconfig/settings/yazi/theme.toml +0 -0
  641. machineconfig/settings/yazi/yazi.toml +4 -0
  642. machineconfig/settings/zed/settings.json +35 -0
  643. machineconfig/settings/zellij/commands/monitor +9 -0
  644. machineconfig/settings/zellij/commands/standard_panes +33 -0
  645. machineconfig/settings/zellij/config.kdl +295 -0
  646. machineconfig/settings/zellij/config.orig.kdl +295 -0
  647. machineconfig/settings/zellij/layouts/hist +13 -0
  648. machineconfig/settings/zellij/layouts/panes.kdl +20 -0
  649. machineconfig/settings/zellij/layouts/st.kdl +21 -0
  650. machineconfig/settings/zellij/layouts/st2.kdl +59 -0
  651. machineconfig/settings/zellij/layouts/stacked_panes.kdl +11 -0
  652. machineconfig/setup_linux/nix/cli_installation.sh +166 -0
  653. machineconfig/setup_linux/others/mint_keyboard_shortcuts.sh +30 -0
  654. machineconfig/setup_linux/others/openssh-server_add_pub_key.sh +60 -0
  655. machineconfig/setup_linux/web_shortcuts/all.sh +53 -0
  656. machineconfig/setup_linux/web_shortcuts/ascii_art.sh +100 -0
  657. machineconfig/setup_linux/web_shortcuts/croshell.sh +66 -0
  658. machineconfig/setup_linux/web_shortcuts/interactive.sh +241 -0
  659. machineconfig/setup_linux/web_shortcuts/ssh.sh +64 -0
  660. machineconfig/setup_linux/web_shortcuts/update_system.sh +55 -0
  661. machineconfig/setup_windows/others/docker.ps1 +7 -0
  662. machineconfig/setup_windows/others/obs.ps1 +4 -0
  663. machineconfig/setup_windows/web_shortcuts/all.ps1 +18 -0
  664. machineconfig/setup_windows/web_shortcuts/ascii_art.ps1 +36 -0
  665. machineconfig/setup_windows/web_shortcuts/croshell.ps1 +16 -0
  666. machineconfig/setup_windows/web_shortcuts/interactive.ps1 +200 -0
  667. machineconfig/setup_windows/web_shortcuts/ssh.ps1 +11 -0
  668. machineconfig/setup_windows/wt_and_pwsh/install_fonts.ps1 +27 -0
  669. machineconfig/setup_windows/wt_and_pwsh/set_pwsh_theme.py +12 -2
  670. machineconfig/setup_windows/wt_and_pwsh/set_wt_settings.py +45 -9
  671. machineconfig/utils/ai/__init__.py +0 -0
  672. machineconfig/utils/ai/browser_user_wrapper.py +51 -0
  673. machineconfig/utils/ai/generate_file_checklist.py +74 -0
  674. machineconfig/utils/ai/url2md.py +75 -0
  675. machineconfig/utils/installer.py +101 -253
  676. machineconfig/utils/installer_utils/__init__.py +0 -0
  677. machineconfig/utils/installer_utils/installer_abc.py +100 -0
  678. machineconfig/utils/installer_utils/installer_class.py +253 -0
  679. machineconfig/utils/procs.py +69 -16
  680. machineconfig/utils/scheduling.py +47 -13
  681. machineconfig/utils/utils.py +39 -371
  682. machineconfig/utils/utils_code.py +82 -0
  683. machineconfig/utils/utils_links.py +88 -0
  684. machineconfig/utils/utils_options.py +163 -0
  685. machineconfig/utils/utils_path.py +151 -0
  686. machineconfig/utils/ve.py +37 -225
  687. machineconfig/utils/ve_utils/ve1.py +111 -0
  688. machineconfig/utils/ve_utils/ve2.py +142 -0
  689. {machineconfig-1.92.dist-info → machineconfig-1.94.dist-info}/METADATA +25 -21
  690. machineconfig-1.94.dist-info/RECORD +710 -0
  691. {machineconfig-1.92.dist-info → machineconfig-1.94.dist-info}/WHEEL +1 -1
  692. machineconfig-1.92.dist-info/LICENSE +0 -201
  693. machineconfig-1.92.dist-info/RECORD +0 -70
  694. {machineconfig-1.92.dist-info → machineconfig-1.94.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,1476 @@
1
+ # vim:fileencoding=utf-8:ft=conf:foldmethod=marker
2
+
3
+ #: Fonts {{{
4
+
5
+ #: kitty has very powerful font management. You can configure
6
+ #: individual font faces and even specify special fonts for particular
7
+ #: characters.
8
+
9
+ font_family monospace
10
+ bold_font auto
11
+ italic_font auto
12
+ bold_italic_font auto
13
+
14
+ #: You can specify different fonts for the bold/italic/bold-italic
15
+ #: variants. To get a full list of supported fonts use the `kitty
16
+ #: list-fonts` command. By default they are derived automatically, by
17
+ #: the OSes font system. Setting them manually is useful for font
18
+ #: families that have many weight variants like Book, Medium, Thick,
19
+ #: etc. For example::
20
+
21
+ #: font_family Operator Mono Book
22
+ #: bold_font Operator Mono Medium
23
+ #: italic_font Operator Mono Book Italic
24
+ #: bold_italic_font Operator Mono Medium Italic
25
+
26
+ font_size 14.0
27
+
28
+ #: Font size (in pts)
29
+
30
+ force_ltr no
31
+
32
+ #: kitty does not support BIDI (bidirectional text), however, for RTL
33
+ #: scripts, words are automatically displayed in RTL. That is to say,
34
+ #: in an RTL script, the words "HELLO WORLD" display in kitty as
35
+ #: "WORLD HELLO", and if you try to select a substring of an RTL-
36
+ #: shaped string, you will get the character that would be there had
37
+ #: the the string been LTR. For example, assuming the Hebrew word
38
+ #: ירושלים, selecting the character that on the screen appears to be ם
39
+ #: actually writes into the selection buffer the character י. kitty's
40
+ #: default behavior is useful in conjunction with a filter to reverse
41
+ #: the word order, however, if you wish to manipulate RTL glyphs, it
42
+ #: can be very challenging to work with, so this option is provided to
43
+ #: turn it off. Furthermore, this option can be used with the command
44
+ #: line program GNU FriBidi
45
+ #: <https://github.com/fribidi/fribidi#executable> to get BIDI
46
+ #: support, because it will force kitty to always treat the text as
47
+ #: LTR, which FriBidi expects for terminals.
48
+
49
+ adjust_line_height 0
50
+ adjust_column_width 0
51
+
52
+ #: Change the size of each character cell kitty renders. You can use
53
+ #: either numbers, which are interpreted as pixels or percentages
54
+ #: (number followed by %), which are interpreted as percentages of the
55
+ #: unmodified values. You can use negative pixels or percentages less
56
+ #: than 100% to reduce sizes (but this might cause rendering
57
+ #: artifacts).
58
+
59
+ adjust_baseline 0
60
+
61
+ #: Adjust the vertical alignment of text (the height in the cell at
62
+ #: which text is positioned). You can use either numbers, which are
63
+ #: interpreted as pixels or a percentages (number followed by %),
64
+ #: which are interpreted as the percentage of the line height. A
65
+ #: positive value moves the baseline up, and a negative value moves
66
+ #: them down. The underline and strikethrough positions are adjusted
67
+ #: accordingly.
68
+
69
+ # symbol_map U+E0A0-U+E0A3,U+E0C0-U+E0C7 PowerlineSymbols
70
+
71
+ #: Map the specified unicode codepoints to a particular font. Useful
72
+ #: if you need special rendering for some symbols, such as for
73
+ #: Powerline. Avoids the need for patched fonts. Each unicode code
74
+ #: point is specified in the form U+<code point in hexadecimal>. You
75
+ #: can specify multiple code points, separated by commas and ranges
76
+ #: separated by hyphens. symbol_map itself can be specified multiple
77
+ #: times. Syntax is::
78
+
79
+ #: symbol_map codepoints Font Family Name
80
+
81
+ disable_ligatures never
82
+
83
+ #: Choose how you want to handle multi-character ligatures. The
84
+ #: default is to always render them. You can tell kitty to not render
85
+ #: them when the cursor is over them by using cursor to make editing
86
+ #: easier, or have kitty never render them at all by using always, if
87
+ #: you don't like them. The ligature strategy can be set per-window
88
+ #: either using the kitty remote control facility or by defining
89
+ #: shortcuts for it in kitty.conf, for example::
90
+
91
+ #: map alt+1 disable_ligatures_in active always
92
+ #: map alt+2 disable_ligatures_in all never
93
+ #: map alt+3 disable_ligatures_in tab cursor
94
+
95
+ #: Note that this refers to programming ligatures, typically
96
+ #: implemented using the calt OpenType feature. For disabling general
97
+ #: ligatures, use the font_features setting.
98
+
99
+ # font_features none
100
+
101
+ #: Choose exactly which OpenType features to enable or disable. This
102
+ #: is useful as some fonts might have features worthwhile in a
103
+ #: terminal. For example, Fira Code Retina includes a discretionary
104
+ #: feature, zero, which in that font changes the appearance of the
105
+ #: zero (0), to make it more easily distinguishable from Ø. Fira Code
106
+ #: Retina also includes other discretionary features known as
107
+ #: Stylistic Sets which have the tags ss01 through ss20.
108
+
109
+ #: For the exact syntax to use for individual features, see the
110
+ #: Harfbuzz documentation <https://harfbuzz.github.io/harfbuzz-hb-
111
+ #: common.html#hb-feature-from-string>.
112
+
113
+ #: Note that this code is indexed by PostScript name, and not the font
114
+ #: family. This allows you to define very precise feature settings;
115
+ #: e.g. you can disable a feature in the italic font but not in the
116
+ #: regular font.
117
+
118
+ #: On Linux, these are read from the FontConfig database first and
119
+ #: then this, setting is applied, so they can be configured in a
120
+ #: single, central place.
121
+
122
+ #: To get the PostScript name for a font, use kitty + list-fonts
123
+ #: --psnames:
124
+
125
+ #: .. code-block:: sh
126
+
127
+ #: $ kitty + list-fonts --psnames | grep Fira
128
+ #: Fira Code
129
+ #: Fira Code Bold (FiraCode-Bold)
130
+ #: Fira Code Light (FiraCode-Light)
131
+ #: Fira Code Medium (FiraCode-Medium)
132
+ #: Fira Code Regular (FiraCode-Regular)
133
+ #: Fira Code Retina (FiraCode-Retina)
134
+
135
+ #: The part in brackets is the PostScript name.
136
+
137
+ #: Enable alternate zero and oldstyle numerals::
138
+
139
+ #: font_features FiraCode-Retina +zero +onum
140
+
141
+ #: Enable only alternate zero::
142
+
143
+ #: font_features FiraCode-Retina +zero
144
+
145
+ #: Disable the normal ligatures, but keep the calt feature which (in
146
+ #: this font) breaks up monotony::
147
+
148
+ #: font_features TT2020StyleB-Regular -liga +calt
149
+
150
+ #: In conjunction with force_ltr, you may want to disable Arabic
151
+ #: shaping entirely, and only look at their isolated forms if they
152
+ #: show up in a document. You can do this with e.g.::
153
+
154
+ #: font_features UnifontMedium +isol -medi -fina -init
155
+
156
+ box_drawing_scale 0.001, 1, 1.5, 2
157
+
158
+ #: Change the sizes of the lines used for the box drawing unicode
159
+ #: characters These values are in pts. They will be scaled by the
160
+ #: monitor DPI to arrive at a pixel value. There must be four values
161
+ #: corresponding to thin, normal, thick, and very thick lines.
162
+
163
+ #: }}}
164
+
165
+ #: Cursor customization {{{
166
+
167
+ cursor #cccccc
168
+
169
+ #: Default cursor color
170
+
171
+ cursor_text_color #111111
172
+
173
+ #: Choose the color of text under the cursor. If you want it rendered
174
+ #: with the background color of the cell underneath instead, use the
175
+ #: special keyword: background
176
+
177
+ cursor_shape block
178
+
179
+ #: The cursor shape can be one of (block, beam, underline). Note that
180
+ #: when reloading the config this will be changed only if the cursor
181
+ #: shape has not been set by the program running in the terminal.
182
+
183
+ cursor_beam_thickness 1.5
184
+
185
+ #: Defines the thickness of the beam cursor (in pts)
186
+
187
+ cursor_underline_thickness 2.0
188
+
189
+ #: Defines the thickness of the underline cursor (in pts)
190
+
191
+ cursor_blink_interval 1.0
192
+
193
+ #: The interval (in seconds) at which to blink the cursor. Set to zero
194
+ #: to disable blinking. Negative values mean use system default. Note
195
+ #: that numbers smaller than repaint_delay will be limited to
196
+ #: repaint_delay.
197
+
198
+ cursor_stop_blinking_after 200.0
199
+
200
+ #: Stop blinking cursor after the specified number of seconds of
201
+ #: keyboard inactivity. Set to zero to never stop blinking.
202
+
203
+ #: }}}
204
+
205
+ #: Scrollback {{{
206
+
207
+ scrollback_lines 2000
208
+
209
+ #: Number of lines of history to keep in memory for scrolling back.
210
+ #: Memory is allocated on demand. Negative numbers are (effectively)
211
+ #: infinite scrollback. Note that using very large scrollback is not
212
+ #: recommended as it can slow down performance of the terminal and
213
+ #: also use large amounts of RAM. Instead, consider using
214
+ #: scrollback_pager_history_size. Note that on config reload if this
215
+ #: is changed it will only affect newly created windows, not existing
216
+ #: ones.
217
+
218
+ scrollback_pager less --chop-long-lines --RAW-CONTROL-CHARS +INPUT_LINE_NUMBER
219
+
220
+ #: Program with which to view scrollback in a new window. The
221
+ #: scrollback buffer is passed as STDIN to this program. If you change
222
+ #: it, make sure the program you use can handle ANSI escape sequences
223
+ #: for colors and text formatting. INPUT_LINE_NUMBER in the command
224
+ #: line above will be replaced by an integer representing which line
225
+ #: should be at the top of the screen. Similarly CURSOR_LINE and
226
+ #: CURSOR_COLUMN will be replaced by the current cursor position.
227
+
228
+ scrollback_pager_history_size 0
229
+
230
+ #: Separate scrollback history size, used only for browsing the
231
+ #: scrollback buffer (in MB). This separate buffer is not available
232
+ #: for interactive scrolling but will be piped to the pager program
233
+ #: when viewing scrollback buffer in a separate window. The current
234
+ #: implementation stores the data in UTF-8, so approximatively 10000
235
+ #: lines per megabyte at 100 chars per line, for pure ASCII text,
236
+ #: unformatted text. A value of zero or less disables this feature.
237
+ #: The maximum allowed size is 4GB. Note that on config reload if this
238
+ #: is changed it will only affect newly created windows, not existing
239
+ #: ones.
240
+
241
+ scrollback_fill_enlarged_window no
242
+
243
+ #: Fill new space with lines from the scrollback buffer after
244
+ #: enlarging a window.
245
+
246
+ wheel_scroll_multiplier 5.0
247
+
248
+ #: Modify the amount scrolled by the mouse wheel. Note this is only
249
+ #: used for low precision scrolling devices, not for high precision
250
+ #: scrolling on platforms such as macOS and Wayland. Use negative
251
+ #: numbers to change scroll direction.
252
+
253
+ touch_scroll_multiplier 1.0
254
+
255
+ #: Modify the amount scrolled by a touchpad. Note this is only used
256
+ #: for high precision scrolling devices on platforms such as macOS and
257
+ #: Wayland. Use negative numbers to change scroll direction.
258
+
259
+ #: }}}
260
+
261
+ #: Mouse {{{
262
+
263
+ mouse_hide_wait 3.0
264
+
265
+ #: Hide mouse cursor after the specified number of seconds of the
266
+ #: mouse not being used. Set to zero to disable mouse cursor hiding.
267
+ #: Set to a negative value to hide the mouse cursor immediately when
268
+ #: typing text. Disabled by default on macOS as getting it to work
269
+ #: robustly with the ever-changing sea of bugs that is Cocoa is too
270
+ #: much effort.
271
+
272
+ url_color #0087bd
273
+ url_style curly
274
+
275
+ #: The color and style for highlighting URLs on mouse-over. url_style
276
+ #: can be one of: none, single, double, curly
277
+
278
+ open_url_with default
279
+
280
+ #: The program with which to open URLs that are clicked on. The
281
+ #: special value default means to use the operating system's default
282
+ #: URL handler.
283
+
284
+ url_prefixes http https file ftp gemini irc gopher mailto news git
285
+
286
+ #: The set of URL prefixes to look for when detecting a URL under the
287
+ #: mouse cursor.
288
+
289
+ detect_urls yes
290
+
291
+ #: Detect URLs under the mouse. Detected URLs are highlighted with an
292
+ #: underline and the mouse cursor becomes a hand over them. Even if
293
+ #: this option is disabled, URLs are still clickable.
294
+
295
+ url_excluded_characters
296
+
297
+ #: Additional characters to be disallowed from URLs, when detecting
298
+ #: URLs under the mouse cursor. By default, all characters legal in
299
+ #: URLs are allowed.
300
+
301
+ copy_on_select no
302
+
303
+ #: Copy to clipboard or a private buffer on select. With this set to
304
+ #: clipboard, simply selecting text with the mouse will cause the text
305
+ #: to be copied to clipboard. Useful on platforms such as macOS that
306
+ #: do not have the concept of primary selections. You can instead
307
+ #: specify a name such as a1 to copy to a private kitty buffer
308
+ #: instead. Map a shortcut with the paste_from_buffer action to paste
309
+ #: from this private buffer. For example::
310
+
311
+ #: map cmd+shift+v paste_from_buffer a1
312
+
313
+ #: Note that copying to the clipboard is a security risk, as all
314
+ #: programs, including websites open in your browser can read the
315
+ #: contents of the system clipboard.
316
+
317
+ strip_trailing_spaces never
318
+
319
+ #: Remove spaces at the end of lines when copying to clipboard. A
320
+ #: value of smart will do it when using normal selections, but not
321
+ #: rectangle selections. always will always do it.
322
+
323
+ select_by_word_characters @-./_~?&=%+#
324
+
325
+ #: Characters considered part of a word when double clicking. In
326
+ #: addition to these characters any character that is marked as an
327
+ #: alphanumeric character in the unicode database will be matched.
328
+
329
+ click_interval -1.0
330
+
331
+ #: The interval between successive clicks to detect double/triple
332
+ #: clicks (in seconds). Negative numbers will use the system default
333
+ #: instead, if available, or fallback to 0.5.
334
+
335
+ focus_follows_mouse yes
336
+
337
+ #: Set the active window to the window under the mouse when moving the
338
+ #: mouse around
339
+
340
+ pointer_shape_when_grabbed arrow
341
+
342
+ #: The shape of the mouse pointer when the program running in the
343
+ #: terminal grabs the mouse. Valid values are: arrow, beam and hand
344
+
345
+ default_pointer_shape beam
346
+
347
+ #: The default shape of the mouse pointer. Valid values are: arrow,
348
+ #: beam and hand
349
+
350
+ pointer_shape_when_dragging beam
351
+
352
+ #: The default shape of the mouse pointer when dragging across text.
353
+ #: Valid values are: arrow, beam and hand
354
+
355
+ #: Mouse actions {{{
356
+
357
+ #: Mouse buttons can be remapped to perform arbitrary actions. The
358
+ #: syntax for doing so is:
359
+
360
+ #: .. code-block:: none
361
+
362
+ #: mouse_map button-name event-type modes action
363
+
364
+ #: Where ``button-name`` is one of ``left``, ``middle``, ``right`` or
365
+ #: ``b1 ... b8`` with added keyboard modifiers, for example:
366
+ #: ``ctrl+shift+left`` refers to holding the ctrl+shift keys while
367
+ #: clicking with the left mouse button. The number ``b1 ... b8`` can
368
+ #: be used to refer to upto eight buttons on a mouse.
369
+
370
+ #: ``event-type`` is one ``press``, ``release``, ``doublepress``,
371
+ #: ``triplepress``, ``click`` and ``doubleclick``. ``modes``
372
+ #: indicates whether the action is performed when the mouse is grabbed
373
+ #: by the program running in the terminal, or not. It can have one or
374
+ #: more or the values, ``grabbed,ungrabbed``. ``grabbed`` refers to
375
+ #: when the program running in the terminal has requested mouse
376
+ #: events. Note that the click and double click events have a delay of
377
+ #: click_interval to disambiguate from double and triple presses.
378
+
379
+ #: You can run kitty with the kitty --debug-input command line option
380
+ #: to see mouse events. See the builtin actions below to get a sense
381
+ #: of what is possible.
382
+
383
+ #: If you want to unmap an action map it to ``no-op``. For example, to
384
+ #: disable opening of URLs with a plain click::
385
+
386
+ #: mouse_map left click ungrabbed no-op
387
+
388
+ #: .. note::
389
+ #: Once a selection is started, releasing the button that started it will
390
+ #: automatically end it and no release event will be dispatched.
391
+
392
+ mouse_map left click ungrabbed mouse_click_url_or_select
393
+ mouse_map shift+left click grabbed,ungrabbed mouse_click_url_or_select
394
+ mouse_map ctrl+shift+left release grabbed,ungrabbed mouse_click_url
395
+
396
+ #: Variant with ctrl+shift is present because the simple click based
397
+ #: version has an unavoidable delay of click_interval, to disambiguate
398
+ #: clicks from double clicks.
399
+
400
+ mouse_map ctrl+shift+left press grabbed discard_event
401
+
402
+ #: Prevent this press event from being sent to the program that has
403
+ #: grabbed the mouse, as the corresponding release event is used to
404
+ #: open a URL.
405
+
406
+ mouse_map middle release ungrabbed paste_from_selection
407
+ mouse_map left press ungrabbed mouse_selection normal
408
+ mouse_map ctrl+alt+left press ungrabbed mouse_selection rectangle
409
+ mouse_map left doublepress ungrabbed mouse_selection word
410
+ mouse_map left triplepress ungrabbed mouse_selection line
411
+
412
+ #: Select the entire line
413
+
414
+ mouse_map ctrl+alt+left triplepress ungrabbed mouse_selection line_from_point
415
+
416
+ #: Select from the clicked point to the end of the line
417
+
418
+ mouse_map right press ungrabbed mouse_selection extend
419
+ mouse_map shift+middle release ungrabbed,grabbed paste_selection
420
+ mouse_map shift+left press ungrabbed,grabbed mouse_selection normal
421
+ mouse_map shift+ctrl+alt+left press ungrabbed,grabbed mouse_selection rectangle
422
+ mouse_map shift+left doublepress ungrabbed,grabbed mouse_selection word
423
+ mouse_map shift+left triplepress ungrabbed,grabbed mouse_selection line
424
+
425
+ #: Select the entire line
426
+
427
+ mouse_map shift+ctrl+alt+left triplepress ungrabbed,grabbed mouse_selection line_from_point
428
+
429
+ #: Select from the clicked point to the end of the line
430
+
431
+ mouse_map shift+right press ungrabbed,grabbed mouse_selection extend
432
+ #: }}}
433
+
434
+ #: }}}
435
+
436
+ #: Performance tuning {{{
437
+
438
+ repaint_delay 10
439
+
440
+ #: Delay (in milliseconds) between screen updates. Decreasing it,
441
+ #: increases frames-per-second (FPS) at the cost of more CPU usage.
442
+ #: The default value yields ~100 FPS which is more than sufficient for
443
+ #: most uses. Note that to actually achieve 100 FPS you have to either
444
+ #: set sync_to_monitor to no or use a monitor with a high refresh
445
+ #: rate. Also, to minimize latency when there is pending input to be
446
+ #: processed, repaint_delay is ignored.
447
+
448
+ input_delay 3
449
+
450
+ #: Delay (in milliseconds) before input from the program running in
451
+ #: the terminal is processed. Note that decreasing it will increase
452
+ #: responsiveness, but also increase CPU usage and might cause flicker
453
+ #: in full screen programs that redraw the entire screen on each loop,
454
+ #: because kitty is so fast that partial screen updates will be drawn.
455
+
456
+ sync_to_monitor yes
457
+
458
+ #: Sync screen updates to the refresh rate of the monitor. This
459
+ #: prevents tearing (https://en.wikipedia.org/wiki/Screen_tearing)
460
+ #: when scrolling. However, it limits the rendering speed to the
461
+ #: refresh rate of your monitor. With a very high speed mouse/high
462
+ #: keyboard repeat rate, you may notice some slight input latency. If
463
+ #: so, set this to no.
464
+
465
+ #: }}}
466
+
467
+ #: Terminal bell {{{
468
+
469
+ enable_audio_bell no
470
+
471
+ #: Enable/disable the audio bell. Useful in environments that require
472
+ #: silence.
473
+
474
+ visual_bell_duration 0.0
475
+
476
+ #: Visual bell duration. Flash the screen when a bell occurs for the
477
+ #: specified number of seconds. Set to zero to disable.
478
+
479
+ window_alert_on_bell yes
480
+
481
+ #: Request window attention on bell. Makes the dock icon bounce on
482
+ #: macOS or the taskbar flash on linux.
483
+
484
+ bell_on_tab no
485
+
486
+ #: Show a bell symbol on the tab if a bell occurs in one of the
487
+ #: windows in the tab and the window is not the currently focused
488
+ #: window
489
+
490
+ command_on_bell none
491
+
492
+ #: Program to run when a bell occurs.
493
+
494
+ #: }}}
495
+
496
+ #: Window layout {{{
497
+
498
+ remember_window_size yes
499
+ initial_window_width 640
500
+ initial_window_height 400
501
+
502
+ #: If enabled, the window size will be remembered so that new
503
+ #: instances of kitty will have the same size as the previous
504
+ #: instance. If disabled, the window will initially have size
505
+ #: configured by initial_window_width/height, in pixels. You can use a
506
+ #: suffix of "c" on the width/height values to have them interpreted
507
+ #: as number of cells instead of pixels.
508
+
509
+ enabled_layouts *
510
+
511
+ #: The enabled window layouts. A comma separated list of layout names.
512
+ #: The special value all means all layouts. The first listed layout
513
+ #: will be used as the startup layout. Default configuration is all
514
+ #: layouts in alphabetical order. For a list of available layouts, see
515
+ #: the https://sw.kovidgoyal.net/kitty/index.html#layouts.
516
+
517
+ window_resize_step_cells 2
518
+ window_resize_step_lines 2
519
+
520
+ #: The step size (in units of cell width/cell height) to use when
521
+ #: resizing windows. The cells value is used for horizontal resizing
522
+ #: and the lines value for vertical resizing.
523
+
524
+ window_border_width 0.5pt
525
+
526
+ #: The width of window borders. Can be either in pixels (px) or pts
527
+ #: (pt). Values in pts will be rounded to the nearest number of pixels
528
+ #: based on screen resolution. If not specified the unit is assumed to
529
+ #: be pts. Note that borders are displayed only when more than one
530
+ #: window is visible. They are meant to separate multiple windows.
531
+
532
+ draw_minimal_borders yes
533
+
534
+ #: Draw only the minimum borders needed. This means that only the
535
+ #: minimum needed borders for inactive windows are drawn. That is only
536
+ #: the borders that separate the inactive window from a neighbor. Note
537
+ #: that setting a non-zero window margin overrides this and causes all
538
+ #: borders to be drawn.
539
+
540
+ window_margin_width 0
541
+
542
+ #: The window margin (in pts) (blank area outside the border). A
543
+ #: single value sets all four sides. Two values set the vertical and
544
+ #: horizontal sides. Three values set top, horizontal and bottom. Four
545
+ #: values set top, right, bottom and left.
546
+
547
+ single_window_margin_width -1
548
+
549
+ #: The window margin (in pts) to use when only a single window is
550
+ #: visible. Negative values will cause the value of
551
+ #: window_margin_width to be used instead. A single value sets all
552
+ #: four sides. Two values set the vertical and horizontal sides. Three
553
+ #: values set top, horizontal and bottom. Four values set top, right,
554
+ #: bottom and left.
555
+
556
+ window_padding_width 0
557
+
558
+ #: The window padding (in pts) (blank area between the text and the
559
+ #: window border). A single value sets all four sides. Two values set
560
+ #: the vertical and horizontal sides. Three values set top, horizontal
561
+ #: and bottom. Four values set top, right, bottom and left.
562
+
563
+ placement_strategy center
564
+
565
+ #: When the window size is not an exact multiple of the cell size, the
566
+ #: cell area of the terminal window will have some extra padding on
567
+ #: the sides. You can control how that padding is distributed with
568
+ #: this option. Using a value of center means the cell area will be
569
+ #: placed centrally. A value of top-left means the padding will be on
570
+ #: only the bottom and right edges.
571
+
572
+ active_border_color #00ff00
573
+
574
+ #: The color for the border of the active window. Set this to none to
575
+ #: not draw borders around the active window.
576
+
577
+ inactive_border_color #cccccc
578
+
579
+ #: The color for the border of inactive windows
580
+
581
+ bell_border_color #ff5a00
582
+
583
+ #: The color for the border of inactive windows in which a bell has
584
+ #: occurred
585
+
586
+ inactive_text_alpha 1.0
587
+
588
+ #: Fade the text in inactive windows by the specified amount (a number
589
+ #: between zero and one, with zero being fully faded).
590
+
591
+ hide_window_decorations yes
592
+
593
+ #: Hide the window decorations (title-bar and window borders) with
594
+ #: yes. On macOS, titlebar-only can be used to only hide the titlebar.
595
+ #: Whether this works and exactly what effect it has depends on the
596
+ #: window manager/operating system. Note that the effects of changing
597
+ #: this setting when reloading config are undefined.
598
+
599
+ resize_debounce_time 0.1
600
+
601
+ #: The time (in seconds) to wait before redrawing the screen when a
602
+ #: resize event is received. On platforms such as macOS, where the
603
+ #: operating system sends events corresponding to the start and end of
604
+ #: a resize, this number is ignored.
605
+
606
+ resize_draw_strategy static
607
+
608
+ #: Choose how kitty draws a window while a resize is in progress. A
609
+ #: value of static means draw the current window contents, mostly
610
+ #: unchanged. A value of scale means draw the current window contents
611
+ #: scaled. A value of blank means draw a blank window. A value of size
612
+ #: means show the window size in cells.
613
+
614
+ resize_in_steps no
615
+
616
+ #: Resize the OS window in steps as large as the cells, instead of
617
+ #: with the usual pixel accuracy. Combined with an
618
+ #: initial_window_width and initial_window_height in number of cells,
619
+ #: this option can be used to keep the margins as small as possible
620
+ #: when resizing the OS window. Note that this does not currently work
621
+ #: on Wayland.
622
+
623
+ confirm_os_window_close 0
624
+
625
+ #: Ask for confirmation when closing an OS window or a tab that has at
626
+ #: least this number of kitty windows in it. A value of zero disables
627
+ #: confirmation. This confirmation also applies to requests to quit
628
+ #: the entire application (all OS windows, via the quit action).
629
+
630
+ #: }}}
631
+
632
+ #: Tab bar {{{
633
+
634
+ tab_bar_edge bottom
635
+
636
+ #: Which edge to show the tab bar on, top or bottom
637
+
638
+ tab_bar_margin_width 0.0
639
+
640
+ #: The margin to the left and right of the tab bar (in pts)
641
+
642
+ tab_bar_margin_height 0.0 0.0
643
+
644
+ #: The margin above and below the tab bar (in pts). The first number
645
+ #: is the margin between the edge of the OS Window and the tab bar and
646
+ #: the second number is the margin between the tab bar and the
647
+ #: contents of the current tab.
648
+
649
+ tab_bar_style powerline
650
+
651
+ #: The tab bar style, can be one of: fade, separator, powerline, or
652
+ #: hidden. In the fade style, each tab's edges fade into the
653
+ #: background color, in the separator style, tabs are separated by a
654
+ #: configurable separator, and the powerline shows the tabs as a
655
+ #: continuous line. If you use the hidden style, you might want to
656
+ #: create a mapping for the select_tab action which presents you with
657
+ #: a list of tabs and allows for easy switching to a tab.
658
+
659
+ tab_bar_min_tabs 2
660
+
661
+ #: The minimum number of tabs that must exist before the tab bar is
662
+ #: shown
663
+
664
+ tab_switch_strategy previous
665
+
666
+ #: The algorithm to use when switching to a tab when the current tab
667
+ #: is closed. The default of previous will switch to the last used
668
+ #: tab. A value of left will switch to the tab to the left of the
669
+ #: closed tab. A value of right will switch to the tab to the right of
670
+ #: the closed tab. A value of last will switch to the right-most tab.
671
+
672
+ tab_fade 0.25 0.5 0.75 1
673
+
674
+ #: Control how each tab fades into the background when using fade for
675
+ #: the tab_bar_style. Each number is an alpha (between zero and one)
676
+ #: that controls how much the corresponding cell fades into the
677
+ #: background, with zero being no fade and one being full fade. You
678
+ #: can change the number of cells used by adding/removing entries to
679
+ #: this list.
680
+
681
+ tab_separator " ┇"
682
+
683
+ #: The separator between tabs in the tab bar when using separator as
684
+ #: the tab_bar_style.
685
+
686
+ tab_powerline_style angled
687
+
688
+ #: The powerline separator style between tabs in the tab bar when
689
+ #: using powerline as the tab_bar_style, can be one of: angled,
690
+ #: slanted, or round.
691
+
692
+ tab_activity_symbol none
693
+
694
+ #: Some text or a unicode symbol to show on the tab if a window in the
695
+ #: tab that does not have focus has some activity.
696
+
697
+ tab_title_template "{title}"
698
+
699
+ #: A template to render the tab title. The default just renders the
700
+ #: title. If you wish to include the tab-index as well, use something
701
+ #: like: {index}: {title}. Useful if you have shortcuts mapped for
702
+ #: goto_tab N. If you prefer to see the index as a superscript, use
703
+ #: {sup.index}. In addition you can use {layout_name} for the current
704
+ #: layout name and {num_windows} for the number of windows in the tab.
705
+ #: Note that formatting is done by Python's string formatting
706
+ #: machinery, so you can use, for instance, {layout_name[:2].upper()}
707
+ #: to show only the first two letters of the layout name, upper-cased.
708
+ #: If you want to style the text, you can use styling directives, for
709
+ #: example: {fmt.fg.red}red{fmt.fg.default}normal{fmt.bg._00FF00}green
710
+ #: bg{fmt.bg.normal}. Similarly, for bold and italic:
711
+ #: {fmt.bold}bold{fmt.nobold}normal{fmt.italic}italic{fmt.noitalic}.
712
+
713
+ active_tab_title_template none
714
+
715
+ #: Template to use for active tabs, if not specified falls back to
716
+ #: tab_title_template.
717
+
718
+ active_tab_foreground #000
719
+ active_tab_background #eee
720
+ active_tab_font_style bold-italic
721
+ inactive_tab_foreground #444
722
+ inactive_tab_background #999
723
+ inactive_tab_font_style normal
724
+
725
+ #: Tab bar colors and styles
726
+
727
+ tab_bar_background none
728
+
729
+ #: Background color for the tab bar. Defaults to using the terminal
730
+ #: background color.
731
+
732
+ #: }}}
733
+
734
+ #: Color scheme {{{
735
+
736
+ foreground #dddddd
737
+ background #000000
738
+
739
+ #: The foreground and background colors
740
+
741
+ background_opacity 1.0
742
+
743
+ #: The opacity of the background. A number between 0 and 1, where 1 is
744
+ #: opaque and 0 is fully transparent. This will only work if
745
+ #: supported by the OS (for instance, when using a compositor under
746
+ #: X11). Note that it only sets the background color's opacity in
747
+ #: cells that have the same background color as the default terminal
748
+ #: background. This is so that things like the status bar in vim,
749
+ #: powerline prompts, etc. still look good. But it means that if you
750
+ #: use a color theme with a background color in your editor, it will
751
+ #: not be rendered as transparent. Instead you should change the
752
+ #: default background color in your kitty config and not use a
753
+ #: background color in the editor color scheme. Or use the escape
754
+ #: codes to set the terminals default colors in a shell script to
755
+ #: launch your editor. Be aware that using a value less than 1.0 is a
756
+ #: (possibly significant) performance hit. If you want to dynamically
757
+ #: change transparency of windows set dynamic_background_opacity to
758
+ #: yes (this is off by default as it has a performance cost). Changing
759
+ #: this setting when reloading the config will only work if
760
+ #: dynamic_background_opacity was enabled in the original config.
761
+
762
+ background_image none
763
+
764
+ #: Path to a background image. Must be in PNG format.
765
+
766
+ background_image_layout tiled
767
+
768
+ #: Whether to tile or scale the background image.
769
+
770
+ background_image_linear no
771
+
772
+ #: When background image is scaled, whether linear interpolation
773
+ #: should be used.
774
+
775
+ dynamic_background_opacity no
776
+
777
+ #: Allow changing of the background_opacity dynamically, using either
778
+ #: keyboard shortcuts (increase_background_opacity and
779
+ #: decrease_background_opacity) or the remote control facility.
780
+ #: Changing this setting by reloading the config is not supported.
781
+
782
+ background_tint 0.0
783
+
784
+ #: How much to tint the background image by the background color. The
785
+ #: tint is applied only under the text area, not margin/borders. Makes
786
+ #: it easier to read the text. Tinting is done using the current
787
+ #: background color for each window. This setting applies only if
788
+ #: background_opacity is set and transparent windows are supported or
789
+ #: background_image is set.
790
+
791
+ dim_opacity 0.75
792
+
793
+ #: How much to dim text that has the DIM/FAINT attribute set. One
794
+ #: means no dimming and zero means fully dimmed (i.e. invisible).
795
+
796
+ selection_foreground #000000
797
+
798
+ #: The foreground for text selected with the mouse. A value of none
799
+ #: means to leave the color unchanged.
800
+
801
+ selection_background #fffacd
802
+
803
+ #: The background for text selected with the mouse.
804
+
805
+ #: The color table {{{
806
+
807
+ #: The 256 terminal colors. There are 8 basic colors, each color has a
808
+ #: dull and bright version, for the first 16 colors. You can set the
809
+ #: remaining 240 colors as color16 to color255.
810
+
811
+ color0 #000000
812
+ color8 #767676
813
+
814
+ #: black
815
+
816
+ color1 #cc0403
817
+ color9 #f2201f
818
+
819
+ #: red
820
+
821
+ color2 #19cb00
822
+ color10 #23fd00
823
+
824
+ #: green
825
+
826
+ color3 #cecb00
827
+ color11 #fffd00
828
+
829
+ #: yellow
830
+
831
+ color4 #0d73cc
832
+ color12 #1a8fff
833
+
834
+ #: blue
835
+
836
+ color5 #cb1ed1
837
+ color13 #fd28ff
838
+
839
+ #: magenta
840
+
841
+ color6 #0dcdcd
842
+ color14 #14ffff
843
+
844
+ #: cyan
845
+
846
+ color7 #dddddd
847
+ color15 #ffffff
848
+
849
+ #: white
850
+
851
+ mark1_foreground black
852
+
853
+ #: Color for marks of type 1
854
+
855
+ mark1_background #98d3cb
856
+
857
+ #: Color for marks of type 1 (light steel blue)
858
+
859
+ mark2_foreground black
860
+
861
+ #: Color for marks of type 2
862
+
863
+ mark2_background #f2dcd3
864
+
865
+ #: Color for marks of type 1 (beige)
866
+
867
+ mark3_foreground black
868
+
869
+ #: Color for marks of type 3
870
+
871
+ mark3_background #f274bc
872
+
873
+ #: Color for marks of type 3 (violet)
874
+
875
+ #: }}}
876
+
877
+ #: }}}
878
+
879
+ #: Advanced {{{
880
+
881
+ shell .
882
+
883
+ #: The shell program to execute. The default value of . means to use
884
+ #: whatever shell is set as the default shell for the current user.
885
+ #: Note that on macOS if you change this, you might need to add
886
+ #: --login to ensure that the shell starts in interactive mode and
887
+ #: reads its startup rc files.
888
+
889
+ editor .
890
+
891
+ #: The console editor to use when editing the kitty config file or
892
+ #: similar tasks. A value of . means to use the environment variables
893
+ #: VISUAL and EDITOR in that order. Note that this environment
894
+ #: variable has to be set not just in your shell startup scripts but
895
+ #: system-wide, otherwise kitty will not see it.
896
+
897
+ close_on_child_death no
898
+
899
+ #: Close the window when the child process (shell) exits. If no (the
900
+ #: default), the terminal will remain open when the child exits as
901
+ #: long as there are still processes outputting to the terminal (for
902
+ #: example disowned or backgrounded processes). If yes, the window
903
+ #: will close as soon as the child process exits. Note that setting it
904
+ #: to yes means that any background processes still using the terminal
905
+ #: can fail silently because their stdout/stderr/stdin no longer work.
906
+
907
+ allow_remote_control yes
908
+
909
+ #: Allow other programs to control kitty. If you turn this on other
910
+ #: programs can control all aspects of kitty, including sending text
911
+ #: to kitty windows, opening new windows, closing windows, reading the
912
+ #: content of windows, etc. Note that this even works over ssh
913
+ #: connections. You can chose to either allow any program running
914
+ #: within kitty to control it, with yes or only programs that connect
915
+ #: to the socket specified with the kitty --listen-on command line
916
+ #: option, if you use the value socket-only. The latter is useful if
917
+ #: you want to prevent programs running on a remote computer over ssh
918
+ #: from controlling kitty. Changing this option by reloading the
919
+ #: config will only affect newly created windows.
920
+
921
+ listen_on none
922
+
923
+ #: Tell kitty to listen to the specified unix/tcp socket for remote
924
+ #: control connections. Note that this will apply to all kitty
925
+ #: instances. It can be overridden by the kitty --listen-on command
926
+ #: line flag. This option accepts only UNIX sockets, such as
927
+ #: unix:${TEMP}/mykitty or (on Linux) unix:@mykitty. Environment
928
+ #: variables are expanded. If {kitty_pid} is present then it is
929
+ #: replaced by the PID of the kitty process, otherwise the PID of the
930
+ #: kitty process is appended to the value, with a hyphen. This option
931
+ #: is ignored unless you also set allow_remote_control to enable
932
+ #: remote control. See the help for kitty --listen-on for more
933
+ #: details. Changing this option by reloading the config is not
934
+ #: supported.
935
+
936
+ # env
937
+
938
+ #: Specify environment variables to set in all child processes. Note
939
+ #: that environment variables are expanded recursively, so if you
940
+ #: use::
941
+
942
+ #: env MYVAR1=a
943
+ #: env MYVAR2=${MYVAR1}/${HOME}/b
944
+
945
+ #: The value of MYVAR2 will be a/<path to home directory>/b.
946
+
947
+ update_check_interval 24
948
+
949
+ #: Periodically check if an update to kitty is available. If an update
950
+ #: is found a system notification is displayed informing you of the
951
+ #: available update. The default is to check every 24 hrs, set to zero
952
+ #: to disable. Changing this option by reloading the config is not
953
+ #: supported.
954
+
955
+ startup_session none
956
+
957
+ #: Path to a session file to use for all kitty instances. Can be
958
+ #: overridden by using the kitty --session command line option for
959
+ #: individual instances. See
960
+ #: https://sw.kovidgoyal.net/kitty/index.html#sessions in the kitty
961
+ #: documentation for details. Note that relative paths are interpreted
962
+ #: with respect to the kitty config directory. Environment variables
963
+ #: in the path are expanded. Changing this option by reloading the
964
+ #: config is not supported.
965
+
966
+ clipboard_control write-clipboard write-primary
967
+
968
+ #: Allow programs running in kitty to read and write from the
969
+ #: clipboard. You can control exactly which actions are allowed. The
970
+ #: set of possible actions is: write-clipboard read-clipboard write-
971
+ #: primary read-primary. You can additionally specify no-append to
972
+ #: disable kitty's protocol extension for clipboard concatenation. The
973
+ #: default is to allow writing to the clipboard and primary selection
974
+ #: with concatenation enabled. Note that enabling the read
975
+ #: functionality is a security risk as it means that any program, even
976
+ #: one running on a remote server via SSH can read your clipboard.
977
+
978
+ allow_hyperlinks yes
979
+
980
+ #: Process hyperlink (OSC 8) escape sequences. If disabled OSC 8
981
+ #: escape sequences are ignored. Otherwise they become clickable
982
+ #: links, that you can click by holding down ctrl+shift and clicking
983
+ #: with the mouse. The special value of ``ask`` means that kitty will
984
+ #: ask before opening the link.
985
+
986
+ term xterm-kitty
987
+
988
+ #: The value of the TERM environment variable to set. Changing this
989
+ #: can break many terminal programs, only change it if you know what
990
+ #: you are doing, not because you read some advice on Stack Overflow
991
+ #: to change it. The TERM variable is used by various programs to get
992
+ #: information about the capabilities and behavior of the terminal. If
993
+ #: you change it, depending on what programs you run, and how
994
+ #: different the terminal you are changing it to is, various things
995
+ #: from key-presses, to colors, to various advanced features may not
996
+ #: work. Changing this option by reloading the config will only affect
997
+ #: newly created windows.
998
+
999
+ #: }}}
1000
+
1001
+ #: OS specific tweaks {{{
1002
+
1003
+ wayland_titlebar_color system
1004
+
1005
+ #: Change the color of the kitty window's titlebar on Wayland systems
1006
+ #: with client side window decorations such as GNOME. A value of
1007
+ #: system means to use the default system color, a value of background
1008
+ #: means to use the background color of the currently active window
1009
+ #: and finally you can use an arbitrary color, such as #12af59 or red.
1010
+
1011
+ macos_titlebar_color system
1012
+
1013
+ #: Change the color of the kitty window's titlebar on macOS. A value
1014
+ #: of system means to use the default system color, a value of
1015
+ #: background means to use the background color of the currently
1016
+ #: active window and finally you can use an arbitrary color, such as
1017
+ #: #12af59 or red. WARNING: This option works by using a hack, as
1018
+ #: there is no proper Cocoa API for it. It sets the background color
1019
+ #: of the entire window and makes the titlebar transparent. As such it
1020
+ #: is incompatible with background_opacity. If you want to use both,
1021
+ #: you are probably better off just hiding the titlebar with
1022
+ #: hide_window_decorations.
1023
+
1024
+ macos_option_as_alt no
1025
+
1026
+ #: Use the option key as an alt key. With this set to no, kitty will
1027
+ #: use the macOS native Option+Key = unicode character behavior. This
1028
+ #: will break any Alt+key keyboard shortcuts in your terminal
1029
+ #: programs, but you can use the macOS unicode input technique. You
1030
+ #: can use the values: left, right, or both to use only the left,
1031
+ #: right or both Option keys as Alt, instead. Changing this setting by
1032
+ #: reloading the config is not supported.
1033
+
1034
+ macos_hide_from_tasks no
1035
+
1036
+ #: Hide the kitty window from running tasks (⌘+Tab) on macOS. Changing
1037
+ #: this setting by reloading the config is not supported.
1038
+
1039
+ macos_quit_when_last_window_closed no
1040
+
1041
+ #: Have kitty quit when all the top-level windows are closed. By
1042
+ #: default, kitty will stay running, even with no open windows, as is
1043
+ #: the expected behavior on macOS.
1044
+
1045
+ macos_window_resizable yes
1046
+
1047
+ #: Disable this if you want kitty top-level (OS) windows to not be
1048
+ #: resizable on macOS. Changing this setting by reloading the config
1049
+ #: will only affect newly created windows.
1050
+
1051
+ macos_thicken_font 0
1052
+
1053
+ #: Draw an extra border around the font with the given width, to
1054
+ #: increase legibility at small font sizes. For example, a value of
1055
+ #: 0.75 will result in rendering that looks similar to sub-pixel
1056
+ #: antialiasing at common font sizes.
1057
+
1058
+ macos_traditional_fullscreen yes
1059
+
1060
+ #: Use the traditional full-screen transition, that is faster, but
1061
+ #: less pretty.
1062
+
1063
+ macos_show_window_title_in all
1064
+
1065
+ #: Show or hide the window title in the macOS window or menu-bar. A
1066
+ #: value of window will show the title of the currently active window
1067
+ #: at the top of the macOS window. A value of menubar will show the
1068
+ #: title of the currently active window in the macOS menu-bar, making
1069
+ #: use of otherwise wasted space. all will show the title everywhere
1070
+ #: and none hides the title in the window and the menu-bar.
1071
+
1072
+ macos_custom_beam_cursor no
1073
+
1074
+ #: Enable/disable custom mouse cursor for macOS that is easier to see
1075
+ #: on both light and dark backgrounds. WARNING: this might make your
1076
+ #: mouse cursor invisible on dual GPU machines. Changing this setting
1077
+ #: by reloading the config is not supported.
1078
+
1079
+ linux_display_server auto
1080
+
1081
+ #: Choose between Wayland and X11 backends. By default, an appropriate
1082
+ #: backend based on the system state is chosen automatically. Set it
1083
+ #: to x11 or wayland to force the choice. Changing this setting by
1084
+ #: reloading the config is not supported.
1085
+
1086
+ #: }}}
1087
+
1088
+ #: Keyboard shortcuts {{{
1089
+
1090
+ #: Keys are identified simply by their lowercase unicode characters.
1091
+ #: For example: ``a`` for the A key, ``[`` for the left square bracket
1092
+ #: key, etc. For functional keys, such as ``Enter or Escape`` the
1093
+ #: names are present at https://sw.kovidgoyal.net/kitty/keyboard-
1094
+ #: protocol.html#functional-key-definitions. For a list of modifier
1095
+ #: names, see: GLFW mods
1096
+ #: <https://www.glfw.org/docs/latest/group__mods.html>
1097
+
1098
+ #: On Linux you can also use XKB key names to bind keys that are not
1099
+ #: supported by GLFW. See XKB keys
1100
+ #: <https://github.com/xkbcommon/libxkbcommon/blob/master/xkbcommon/xkbcommon-
1101
+ #: keysyms.h> for a list of key names. The name to use is the part
1102
+ #: after the XKB_KEY_ prefix. Note that you can only use an XKB key
1103
+ #: name for keys that are not known as GLFW keys.
1104
+
1105
+ #: Finally, you can use raw system key codes to map keys, again only
1106
+ #: for keys that are not known as GLFW keys. To see the system key
1107
+ #: code for a key, start kitty with the kitty --debug-input option.
1108
+ #: Then kitty will output some debug text for every key event. In that
1109
+ #: text look for ``native_code`` the value of that becomes the key
1110
+ #: name in the shortcut. For example:
1111
+
1112
+ #: .. code-block:: none
1113
+
1114
+ #: on_key_input: glfw key: 65 native_code: 0x61 action: PRESS mods: 0x0 text: 'a'
1115
+
1116
+ #: Here, the key name for the A key is 0x61 and you can use it with::
1117
+
1118
+ #: map ctrl+0x61 something
1119
+
1120
+ #: to map ctrl+a to something.
1121
+
1122
+ #: You can use the special action no_op to unmap a keyboard shortcut
1123
+ #: that is assigned in the default configuration::
1124
+
1125
+ #: map kitty_mod+space no_op
1126
+
1127
+ #: You can combine multiple actions to be triggered by a single
1128
+ #: shortcut, using the syntax below::
1129
+
1130
+ #: map key combine <separator> action1 <separator> action2 <separator> action3 ...
1131
+
1132
+ #: For example::
1133
+
1134
+ #: map kitty_mod+e combine : new_window : next_layout
1135
+
1136
+ #: this will create a new window and switch to the next available
1137
+ #: layout
1138
+
1139
+ #: You can use multi-key shortcuts using the syntax shown below::
1140
+
1141
+ #: map key1>key2>key3 action
1142
+
1143
+ #: For example::
1144
+
1145
+ #: map ctrl+f>2 set_font_size 20
1146
+
1147
+ kitty_mod ctrl+shift
1148
+
1149
+ #: The value of kitty_mod is used as the modifier for all default
1150
+ #: shortcuts, you can change it in your kitty.conf to change the
1151
+ #: modifiers for all the default shortcuts.
1152
+
1153
+ clear_all_shortcuts no
1154
+
1155
+ #: You can have kitty remove all shortcut definition seen up to this
1156
+ #: point. Useful, for instance, to remove the default shortcuts.
1157
+
1158
+ # kitten_alias hints hints --hints-offset=0
1159
+
1160
+ #: You can create aliases for kitten names, this allows overriding the
1161
+ #: defaults for kitten options and can also be used to shorten
1162
+ #: repeated mappings of the same kitten with a specific group of
1163
+ #: options. For example, the above alias changes the default value of
1164
+ #: kitty +kitten hints --hints-offset to zero for all mappings,
1165
+ #: including the builtin ones.
1166
+
1167
+ #: Clipboard {{{
1168
+
1169
+ map kitty_mod+c copy_to_clipboard
1170
+
1171
+ #: There is also a copy_or_interrupt action that can be optionally
1172
+ #: mapped to Ctrl+c. It will copy only if there is a selection and
1173
+ #: send an interrupt otherwise. Similarly, copy_and_clear_or_interrupt
1174
+ #: will copy and clear the selection or send an interrupt if there is
1175
+ #: no selection.
1176
+
1177
+ map kitty_mod+v paste_from_clipboard
1178
+ map kitty_mod+s paste_from_selection
1179
+ map kitty_mod+o pass_selection_to_program
1180
+ map kitty_mod+z toggle_layout Stack
1181
+
1182
+ #: You can also pass the contents of the current selection to any
1183
+ #: program using pass_selection_to_program. By default, the system's
1184
+ #: open program is used, but you can specify your own, the selection
1185
+ #: will be passed as a command line argument to the program, for
1186
+ #: example::
1187
+
1188
+ #: map kitty_mod+o pass_selection_to_program firefox
1189
+
1190
+ #: You can pass the current selection to a terminal program running in
1191
+ #: a new kitty window, by using the @selection placeholder::
1192
+
1193
+ #: map kitty_mod+y new_window less @selection
1194
+
1195
+ #: }}}
1196
+
1197
+ #: Scrolling {{{
1198
+
1199
+ map kitty_mod+up scroll_line_up
1200
+ map kitty_mod+down scroll_line_down
1201
+ map kitty_mod+page_up scroll_page_up
1202
+ map kitty_mod+page_down scroll_page_down
1203
+ map kitty_mod+home scroll_home
1204
+ map kitty_mod+end scroll_end
1205
+ map kitty_mod+h show_scrollback
1206
+
1207
+ #: You can pipe the contents of the current screen + history buffer as
1208
+ #: STDIN to an arbitrary program using the ``launch`` function. For
1209
+ #: example, the following opens the scrollback buffer in less in an
1210
+ #: overlay window::
1211
+
1212
+ #: map f1 launch --stdin-source=@screen_scrollback --stdin-add-formatting --type=overlay less +G -R
1213
+
1214
+ #: For more details on piping screen and buffer contents to external
1215
+ #: programs, see launch.
1216
+
1217
+ #: }}}
1218
+
1219
+ #: Window management {{{
1220
+
1221
+ map kitty_mod+enter new_window
1222
+ map alt+shift+= new_window
1223
+ map alt+shift+- new_window
1224
+ #: You can open a new window running an arbitrary program, for
1225
+ #: example::
1226
+
1227
+ #: map kitty_mod+y launch mutt
1228
+
1229
+ #: You can open a new window with the current working directory set to
1230
+ #: the working directory of the current window using::
1231
+
1232
+ #: map ctrl+alt+enter launch --cwd=current
1233
+
1234
+ #: You can open a new window that is allowed to control kitty via the
1235
+ #: kitty remote control facility by prefixing the command line with @.
1236
+ #: Any programs running in that window will be allowed to control
1237
+ #: kitty. For example::
1238
+
1239
+ #: map ctrl+enter launch --allow-remote-control some_program
1240
+
1241
+ #: You can open a new window next to the currently active window or as
1242
+ #: the first window, with::
1243
+
1244
+ #: map ctrl+n launch --location=neighbor some_program
1245
+ #: map ctrl+f launch --location=first some_program
1246
+
1247
+ #: For more details, see launch.
1248
+
1249
+ map kitty_mod+n new_os_window
1250
+
1251
+ #: Works like new_window above, except that it opens a top level OS
1252
+ #: kitty window. In particular you can use new_os_window_with_cwd to
1253
+ #: open a window with the current working directory.
1254
+
1255
+ map kitty_mod+w close_window
1256
+ map kitty_mod+] next_window
1257
+ map kitty_mod+[ previous_window
1258
+ map kitty_mod+f move_window_forward
1259
+ map kitty_mod+b move_window_backward
1260
+ map kitty_mod+` move_window_to_top
1261
+ map kitty_mod+r start_resizing_window
1262
+ map kitty_mod+1 first_window
1263
+ map kitty_mod+2 second_window
1264
+ map kitty_mod+3 third_window
1265
+ map kitty_mod+4 fourth_window
1266
+ map kitty_mod+5 fifth_window
1267
+ map kitty_mod+6 sixth_window
1268
+ map kitty_mod+7 seventh_window
1269
+ map kitty_mod+8 eighth_window
1270
+ map kitty_mod+9 ninth_window
1271
+ map kitty_mod+0 tenth_window
1272
+ #: }}}
1273
+
1274
+ #: Tab management {{{
1275
+
1276
+ map kitty_mod+right next_tab
1277
+ map kitty_mod+left previous_tab
1278
+ map kitty_mod+t new_tab
1279
+ map kitty_mod+q close_tab
1280
+ map shift+cmd+w close_os_window
1281
+ map kitty_mod+. move_tab_forward
1282
+ map kitty_mod+, move_tab_backward
1283
+ map kitty_mod+alt+t set_tab_title
1284
+
1285
+ #: You can also create shortcuts to go to specific tabs, with 1 being
1286
+ #: the first tab, 2 the second tab and -1 being the previously active
1287
+ #: tab, and any number larger than the last tab being the last tab::
1288
+
1289
+ #: map ctrl+alt+1 goto_tab 1
1290
+ #: map ctrl+alt+2 goto_tab 2
1291
+
1292
+ #: Just as with new_window above, you can also pass the name of
1293
+ #: arbitrary commands to run when using new_tab and use
1294
+ #: new_tab_with_cwd. Finally, if you want the new tab to open next to
1295
+ #: the current tab rather than at the end of the tabs list, use::
1296
+
1297
+ #: map ctrl+t new_tab !neighbor [optional cmd to run]
1298
+ #: }}}
1299
+
1300
+ #: Layout management {{{
1301
+
1302
+ map kitty_mod+l next_layout
1303
+
1304
+ #: You can also create shortcuts to switch to specific layouts::
1305
+
1306
+ #: map ctrl+alt+t goto_layout tall
1307
+ #: map ctrl+alt+s goto_layout stack
1308
+
1309
+ #: Similarly, to switch back to the previous layout::
1310
+
1311
+ #: map ctrl+alt+p last_used_layout
1312
+ #: }}}
1313
+
1314
+ #: Font sizes {{{
1315
+
1316
+ #: You can change the font size for all top-level kitty OS windows at
1317
+ #: a time or only the current one.
1318
+
1319
+ map kitty_mod+equal change_font_size all +2.0
1320
+ map kitty_mod+minus change_font_size all -2.0
1321
+ map kitty_mod+minus change_font_size all -2.0
1322
+ map ctrl+- change_font_size all -1.0
1323
+ map ctrl++ change_font_size all +1.0
1324
+ map kitty_mod+backspace change_font_size all 0
1325
+
1326
+ #: To setup shortcuts for specific font sizes::
1327
+
1328
+ #: map kitty_mod+f6 change_font_size all 10.0
1329
+
1330
+ #: To setup shortcuts to change only the current OS window's font
1331
+ #: size::
1332
+
1333
+ #: map kitty_mod+f6 change_font_size current 10.0
1334
+ #: }}}
1335
+
1336
+ #: Select and act on visible text {{{
1337
+
1338
+ #: Use the hints kitten to select text and either pass it to an
1339
+ #: external program or insert it into the terminal or copy it to the
1340
+ #: clipboard.
1341
+
1342
+ map kitty_mod+e kitten hints
1343
+
1344
+ #: Open a currently visible URL using the keyboard. The program used
1345
+ #: to open the URL is specified in open_url_with.
1346
+
1347
+ map kitty_mod+p>f kitten hints --type path --program -
1348
+
1349
+ #: Select a path/filename and insert it into the terminal. Useful, for
1350
+ #: instance to run git commands on a filename output from a previous
1351
+ #: git command.
1352
+
1353
+ map kitty_mod+p>shift+f kitten hints --type path
1354
+
1355
+ #: Select a path/filename and open it with the default open program.
1356
+
1357
+ map kitty_mod+p>l kitten hints --type line --program -
1358
+
1359
+ #: Select a line of text and insert it into the terminal. Use for the
1360
+ #: output of things like: ls -1
1361
+
1362
+ map kitty_mod+p>w kitten hints --type word --program -
1363
+
1364
+ #: Select words and insert into terminal.
1365
+
1366
+ map kitty_mod+p>h kitten hints --type hash --program -
1367
+
1368
+ #: Select something that looks like a hash and insert it into the
1369
+ #: terminal. Useful with git, which uses sha1 hashes to identify
1370
+ #: commits
1371
+
1372
+ map kitty_mod+p>n kitten hints --type linenum
1373
+
1374
+ #: Select something that looks like filename:linenum and open it in
1375
+ #: vim at the specified line number.
1376
+
1377
+ map kitty_mod+p>y kitten hints --type hyperlink
1378
+
1379
+ #: Select a hyperlink (i.e. a URL that has been marked as such by the
1380
+ #: terminal program, for example, by ls --hyperlink=auto).
1381
+
1382
+
1383
+ #: The hints kitten has many more modes of operation that you can map
1384
+ #: to different shortcuts. For a full description see kittens/hints.
1385
+ #: }}}
1386
+
1387
+ #: Miscellaneous {{{
1388
+
1389
+ map alt+enter toggle_fullscreen
1390
+ map kitty_mod+f10 toggle_maximized
1391
+ map kitty_mod+u kitten unicode_input
1392
+ map kitty_mod+f2 edit_config_file
1393
+ map kitty_mod+escape kitty_shell window
1394
+
1395
+ #: Open the kitty shell in a new window/tab/overlay/os_window to
1396
+ #: control kitty using commands.
1397
+
1398
+ map kitty_mod+a>m set_background_opacity +0.1
1399
+ map kitty_mod+a>l set_background_opacity -0.1
1400
+ map kitty_mod+a>1 set_background_opacity 1
1401
+ map kitty_mod+a>d set_background_opacity default
1402
+ map kitty_mod+delete clear_terminal reset active
1403
+
1404
+ #: You can create shortcuts to clear/reset the terminal. For example::
1405
+
1406
+ #: # Reset the terminal
1407
+ #: map kitty_mod+f9 clear_terminal reset active
1408
+ #: # Clear the terminal screen by erasing all contents
1409
+ #: map kitty_mod+f10 clear_terminal clear active
1410
+ #: # Clear the terminal scrollback by erasing it
1411
+ #: map kitty_mod+f11 clear_terminal scrollback active
1412
+ #: # Scroll the contents of the screen into the scrollback
1413
+ #: map kitty_mod+f12 clear_terminal scroll active
1414
+
1415
+ #: If you want to operate on all windows instead of just the current
1416
+ #: one, use all instead of active.
1417
+
1418
+ #: It is also possible to remap Ctrl+L to both scroll the current
1419
+ #: screen contents into the scrollback buffer and clear the screen,
1420
+ #: instead of just clearing the screen, for example, for ZSH add the
1421
+ #: following to ~/.zshrc:
1422
+
1423
+ #: .. code-block:: sh
1424
+
1425
+ #: scroll-and-clear-screen() {
1426
+ #: printf '\n%.0s' {1..$LINES}
1427
+ #: zle clear-screen
1428
+ #: }
1429
+ #: zle -N scroll-and-clear-screen
1430
+ #: bindkey '^l' scroll-and-clear-screen
1431
+
1432
+ map kitty_mod+f5 load_config_file
1433
+
1434
+ #: Reload kitty.conf, applying any changes since the last time it was
1435
+ #: loaded. Note that a handful of settings cannot be dynamically
1436
+ #: changed and require a full restart of kitty. You can also map a
1437
+ #: keybinding to load a different config file, for example::
1438
+
1439
+ #: map f5 load_config /path/to/alternative/kitty.conf
1440
+
1441
+ #: Note that all setting from the original kitty.conf are discarded,
1442
+ #: in other words the new conf settings *replace* the old ones.
1443
+
1444
+ map kitty_mod+f6 debug_config
1445
+
1446
+ #: Show details about exactly what configuration kitty is running with
1447
+ #: and its host environment. Useful for debugging issues.
1448
+
1449
+
1450
+ #: You can tell kitty to send arbitrary (UTF-8) encoded text to the
1451
+ #: client program when pressing specified shortcut keys. For example::
1452
+
1453
+ #: map ctrl+alt+a send_text all Special text
1454
+
1455
+ #: This will send "Special text" when you press the ctrl+alt+a key
1456
+ #: combination. The text to be sent is a python string literal so you
1457
+ #: can use escapes like \x1b to send control codes or \u21fb to send
1458
+ #: unicode characters (or you can just input the unicode characters
1459
+ #: directly as UTF-8 text). The first argument to send_text is the
1460
+ #: keyboard modes in which to activate the shortcut. The possible
1461
+ #: values are normal or application or kitty or a comma separated
1462
+ #: combination of them. The special keyword all means all modes. The
1463
+ #: modes normal and application refer to the DECCKM cursor key mode
1464
+ #: for terminals, and kitty refers to the special kitty extended
1465
+ #: keyboard protocol.
1466
+
1467
+ #: Another example, that outputs a word and then moves the cursor to
1468
+ #: the start of the line (same as pressing the Home key)::
1469
+
1470
+ #: map ctrl+alt+a send_text normal Word\x1b[H
1471
+ #: map ctrl+alt+a send_text application Word\x1bOH
1472
+
1473
+ #: }}}
1474
+
1475
+ #: }}}
1476
+