@sebastienrousseau/dotfiles 0.2.502 → 0.2.503

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.
Files changed (412) hide show
  1. package/CHANGELOG.md +83 -9
  2. package/LICENSE +21 -1283
  3. package/README.md +5 -3
  4. package/docs/CONFIG_STRATEGY.md +124 -0
  5. package/docs/COPYRIGHT +1 -1
  6. package/docs/GOVERNANCE.md +98 -0
  7. package/docs/MAINTAINERS.md +41 -0
  8. package/docs/OPENCODE.md +127 -0
  9. package/docs/README.md +2 -0
  10. package/docs/STRUCTURE.md +102 -0
  11. package/docs/adr/ADR-011-nushell-tier3-keep.md +2 -2
  12. package/docs/architecture/AI_COST_OPTIMIZATION.md +143 -0
  13. package/docs/architecture/REPO_LAYOUT.md +8 -8
  14. package/docs/archive/MILESTONE_v0.2.493.md +1 -1
  15. package/docs/index.md +2 -2
  16. package/docs/interop/POWERSHELL.md +1 -1
  17. package/docs/manual/00-introduction.md +1 -1
  18. package/docs/manual/01-concepts/02-trust-model.md +1 -1
  19. package/docs/manual/03-reference/02-config-files.md +2 -2
  20. package/docs/manual/_toc.yml +1 -1
  21. package/docs/manual/command-index.md +72 -59
  22. package/docs/operations/CI_COMPOSITES.md +2 -2
  23. package/docs/operations/COMPLETIONS.md +2 -2
  24. package/docs/operations/COVERAGE.md +5 -5
  25. package/docs/operations/HARD_AUDIT_2026.md +11 -11
  26. package/docs/operations/MAINTENANCE.md +3 -3
  27. package/docs/operations/MANIFEST.md +127 -0
  28. package/docs/operations/RELEASE_PIPELINE.md +130 -0
  29. package/docs/operations/RFC_v0_2_503_reorganization.md +280 -0
  30. package/docs/operations/ROADMAP_2026.md +6 -6
  31. package/docs/operations/ROADMAP_V0_2_503.md +134 -0
  32. package/docs/operations/TESTING.md +17 -0
  33. package/docs/operations/TRACEABILITY.md +6 -3
  34. package/docs/operations/VERSION_SYNC.md +4 -4
  35. package/docs/reference/POWERSHELL_PARITY.md +8 -7
  36. package/docs/schema/dot-env-v1.json +110 -0
  37. package/docs/security/CI_EGRESS_ALLOWLIST.md +1 -1
  38. package/docs/security/CI_PINNING.md +17 -9
  39. package/docs/security/DEPS_DEV_EXCEPTIONS.md +2 -2
  40. package/docs/security/FUZZING.md +114 -0
  41. package/docs/security/INSTALL_VERIFICATION.md +2 -2
  42. package/docs/security/POLICY_RELEASES.md +2 -2
  43. package/docs/security/SCORECARD.md +58 -3
  44. package/docs/security/SHELL_EXEMPTIONS.md +4 -4
  45. package/docs/security/VERIFY_RELEASE.md +201 -0
  46. package/install.sh +27 -5
  47. package/package.json +1 -1
  48. package/scripts/README.md +123 -0
  49. package/scripts/ci/check-copyright-headers.sh +4 -93
  50. package/scripts/ci/check-shell-preamble.sh +4 -103
  51. package/scripts/ci/guard-gitleaks-checkout.sh +4 -54
  52. package/scripts/diagnostics/a2a-conformance.sh +4 -4
  53. package/scripts/diagnostics/alias-governance.sh +1 -1
  54. package/scripts/diagnostics/aliases-cheatsheet.sh +2 -2
  55. package/scripts/diagnostics/benchmark.sh +4 -4
  56. package/scripts/diagnostics/conflicts.sh +2 -2
  57. package/scripts/diagnostics/doctor-unified.sh +2 -2
  58. package/scripts/diagnostics/doctor.sh +10 -10
  59. package/scripts/diagnostics/drift-dashboard.sh +2 -2
  60. package/scripts/diagnostics/health.sh +4 -4
  61. package/scripts/diagnostics/history-analysis.sh +2 -2
  62. package/scripts/diagnostics/mcp-doctor.sh +10 -7
  63. package/scripts/diagnostics/perf.sh +4 -4
  64. package/scripts/diagnostics/scorecard.sh +4 -4
  65. package/scripts/diagnostics/security-score.sh +2 -2
  66. package/scripts/diagnostics/smoke-test.sh +2 -2
  67. package/scripts/diagnostics/snapshot.sh +2 -2
  68. package/scripts/diagnostics/verify.sh +4 -4
  69. package/scripts/diagnostics/version-locks.sh +2 -2
  70. package/scripts/diagnostics/workstation-attestation.sh +14 -14
  71. package/scripts/dot/commands/agent.sh +8 -0
  72. package/scripts/dot/commands/agents.sh +14 -4
  73. package/scripts/dot/commands/ai.sh +144 -25
  74. package/scripts/dot/commands/appearance.sh +2 -2
  75. package/scripts/dot/commands/core.sh +2 -2
  76. package/scripts/dot/commands/diagnostics.sh +5 -5
  77. package/scripts/dot/commands/env-emit.sh +202 -0
  78. package/scripts/dot/commands/fleet.sh +12 -11
  79. package/scripts/dot/commands/init.sh +4 -4
  80. package/scripts/dot/commands/lint.sh +9 -4
  81. package/scripts/dot/commands/manual.sh +3 -3
  82. package/scripts/dot/commands/meta.sh +12 -6
  83. package/scripts/dot/commands/patterns.sh +2 -2
  84. package/scripts/dot/commands/registry.sh +4 -4
  85. package/scripts/dot/commands/restore.sh +4 -4
  86. package/scripts/dot/commands/secrets.sh +4 -3
  87. package/scripts/dot/commands/security.sh +2 -2
  88. package/scripts/dot/commands/tools.sh +13 -3
  89. package/scripts/dot/powershell/Dot.psm1 +199 -0
  90. package/scripts/fonts/install-nerd-fonts.sh +2 -2
  91. package/scripts/git-hooks/pre-commit-audit.sh +2 -2
  92. package/scripts/git-hooks/pre-push +13 -0
  93. package/scripts/ops/ai-setup.sh +1 -1
  94. package/scripts/ops/bundle.sh +2 -2
  95. package/scripts/ops/chaos.sh +2 -2
  96. package/scripts/ops/chezmoi-apply.sh +4 -4
  97. package/scripts/ops/heal.sh +4 -4
  98. package/scripts/ops/post-apply-repair.sh +2 -2
  99. package/scripts/ops/prewarm.sh +2 -2
  100. package/scripts/ops/release.sh +4 -4
  101. package/scripts/ops/rollback.sh +4 -4
  102. package/scripts/ops/setup.sh +2 -2
  103. package/scripts/qa/check-version-consistency.sh +123 -0
  104. package/scripts/qa/coverage-baseline.sh +1 -1
  105. package/scripts/qa/docs-coverage.sh +2 -2
  106. package/scripts/qa/powershell-contract.ps1 +1 -1
  107. package/scripts/qa/scorecard-snapshot.sh +127 -0
  108. package/scripts/security/backup.sh +2 -2
  109. package/scripts/security/dns-doh.sh +4 -4
  110. package/scripts/security/encryption-check.sh +4 -4
  111. package/scripts/security/enforce-policies.sh +2 -2
  112. package/scripts/security/firewall.sh +4 -4
  113. package/scripts/security/lock-screen.sh +4 -4
  114. package/scripts/security/manage-secrets.sh +2 -2
  115. package/scripts/security/ssh-cert.sh +2 -2
  116. package/scripts/security/telemetry-kill.sh +4 -4
  117. package/scripts/security/usb-safety.sh +4 -4
  118. package/scripts/theme/extract-heic-frames.sh +114 -0
  119. package/scripts/theme/rebuild-themes.sh +8 -1
  120. package/scripts/theme/switch.sh +13 -6
  121. package/scripts/theme/wallpaper-sync.sh +297 -93
  122. package/scripts/tuning/linux.sh +2 -2
  123. package/scripts/tuning/macos.sh +2 -2
  124. package/scripts/version-sync.sh +55 -7
  125. package/dot_config/.module-manifest.json +0 -69
  126. package/dot_config/ai/identity.md +0 -23
  127. package/dot_config/ai/patterns/architect.md +0 -16
  128. package/dot_config/ai/patterns/hardener.md +0 -15
  129. package/dot_config/ai/patterns/refactor.md +0 -15
  130. package/dot_config/aider/aider.conf.yml +0 -32
  131. package/dot_config/alacritty/alacritty.toml.tmpl +0 -55
  132. package/dot_config/ansible/ansible.cfg +0 -11
  133. package/dot_config/atuin/config.toml.tmpl +0 -47
  134. package/dot_config/bat/config +0 -23
  135. package/dot_config/brave-flags.conf.tmpl +0 -7
  136. package/dot_config/btop/btop.conf +0 -16
  137. package/dot_config/btop/themes/tokyonight.theme +0 -34
  138. package/dot_config/bun/bunfig.toml.tmpl +0 -33
  139. package/dot_config/claude/mcp_servers.json +0 -20
  140. package/dot_config/containers/containers.conf +0 -14
  141. package/dot_config/curl/dot_curlrc +0 -18
  142. package/dot_config/dlv/config.yml +0 -39
  143. package/dot_config/docker/config.json +0 -15
  144. package/dot_config/dotfiles/agent-card.json +0 -29
  145. package/dot_config/dotfiles/agent-profiles.json +0 -92
  146. package/dot_config/dotfiles/boot/README.md +0 -13
  147. package/dot_config/dotfiles/grub/README.md +0 -13
  148. package/dot_config/dotfiles/lock/README.md +0 -13
  149. package/dot_config/dotfiles/mcp-lock.json +0 -33
  150. package/dot_config/dotfiles/mcp-policy.json +0 -52
  151. package/dot_config/dotfiles/mcp-registry.json +0 -47
  152. package/dot_config/dotfiles/model-registry.json +0 -20
  153. package/dot_config/dotfiles/policy-bundles.json +0 -38
  154. package/dot_config/dotfiles/prompt-registry.json +0 -16
  155. package/dot_config/dotfiles/versions.env +0 -18
  156. package/dot_config/duf/duf.conf +0 -6
  157. package/dot_config/duti/defaults.duti +0 -5
  158. package/dot_config/emoji/emoji.txt +0 -34
  159. package/dot_config/environment.d/50-ssh-agent.conf +0 -2
  160. package/dot_config/environment.d/90-wayland.conf +0 -19
  161. package/dot_config/fastfetch/config.jsonc +0 -28
  162. package/dot_config/firefox/user.js.tmpl +0 -58
  163. package/dot_config/fish/completions/dot-theme-sync.fish.tmpl +0 -9
  164. package/dot_config/fish/completions/dot.fish.tmpl +0 -115
  165. package/dot_config/fish/conf.d/000-perf-cache.fish +0 -56
  166. package/dot_config/fish/conf.d/aliases.fish.tmpl +0 -77
  167. package/dot_config/fish/conf.d/direnv.fish +0 -4
  168. package/dot_config/fish/conf.d/env.fish.tmpl +0 -48
  169. package/dot_config/fish/conf.d/functions.fish.tmpl +0 -22
  170. package/dot_config/fish/conf.d/init.fish.tmpl +0 -172
  171. package/dot_config/fish/conf.d/mise-activate.fish +0 -5
  172. package/dot_config/fish/config.fish.tmpl +0 -44
  173. package/dot_config/fish/fish_plugins +0 -1
  174. package/dot_config/fish/functions/_.fish +0 -3
  175. package/dot_config/fish/functions/_cached_eval.fish +0 -131
  176. package/dot_config/fish/functions/_cached_eval_clear.fish +0 -17
  177. package/dot_config/fish/functions/als.fish +0 -46
  178. package/dot_config/fish/functions/bg-upgrade.fish +0 -7
  179. package/dot_config/fish/functions/c.fish +0 -3
  180. package/dot_config/fish/functions/cat.fish +0 -9
  181. package/dot_config/fish/functions/d.fish +0 -7
  182. package/dot_config/fish/functions/dot.fish +0 -34
  183. package/dot_config/fish/functions/h.fish +0 -3
  184. package/dot_config/fish/functions/l.fish +0 -7
  185. package/dot_config/fish/functions/la.fish +0 -7
  186. package/dot_config/fish/functions/ll.fish +0 -7
  187. package/dot_config/fish/functions/log_error.fish +0 -13
  188. package/dot_config/fish/functions/log_info.fish +0 -13
  189. package/dot_config/fish/functions/lr.fish +0 -7
  190. package/dot_config/fish/functions/lra.fish +0 -7
  191. package/dot_config/fish/functions/ls.fish +0 -7
  192. package/dot_config/fish/functions/lt.fish +0 -7
  193. package/dot_config/fish/functions/lta.fish +0 -7
  194. package/dot_config/fish/functions/notify-run.fish +0 -11
  195. package/dot_config/fish/functions/q.fish +0 -3
  196. package/dot_config/fish/functions/silent-run.fish +0 -7
  197. package/dot_config/fish/functions/yy.fish +0 -8
  198. package/dot_config/flatpak/flatpak.list +0 -4
  199. package/dot_config/fontconfig/fonts.conf.tmpl +0 -57
  200. package/dot_config/foot/foot.ini.tmpl +0 -33
  201. package/dot_config/fuzzel/fuzzel.ini.tmpl +0 -18
  202. package/dot_config/fzf/fzf.zsh +0 -48
  203. package/dot_config/gem/gemrc +0 -9
  204. package/dot_config/gh/config.yml +0 -12
  205. package/dot_config/ghostty/config.tmpl +0 -165
  206. package/dot_config/git/allowed_signers.tmpl +0 -18
  207. package/dot_config/git/attributes +0 -12
  208. package/dot_config/git/commit-template +0 -10
  209. package/dot_config/git/hooks/executable_commit-msg +0 -146
  210. package/dot_config/git/ignore +0 -27
  211. package/dot_config/gnupg/gpg-agent.conf +0 -11
  212. package/dot_config/go/golangci.yml +0 -118
  213. package/dot_config/go/gopls.json +0 -30
  214. package/dot_config/goose/config.yaml +0 -29
  215. package/dot_config/gtk-3.0/gtk.css.tmpl +0 -184
  216. package/dot_config/gtk-3.0/settings.ini.tmpl +0 -27
  217. package/dot_config/gtk-4.0/gtk.css.tmpl +0 -252
  218. package/dot_config/gtk-4.0/settings.ini.tmpl +0 -18
  219. package/dot_config/htop/htoprc +0 -20
  220. package/dot_config/inputrc +0 -2
  221. package/dot_config/ipython/profile_default/ipython_config.py +0 -19
  222. package/dot_config/just/justfile +0 -122
  223. package/dot_config/k9s/config.yaml +0 -65
  224. package/dot_config/k9s/skins/catppuccin-mocha.yaml +0 -116
  225. package/dot_config/kanshi/config.tmpl +0 -22
  226. package/dot_config/karabiner/karabiner.json +0 -14
  227. package/dot_config/kitty/kitty.conf.tmpl +0 -53
  228. package/dot_config/lazydocker/config.yml +0 -186
  229. package/dot_config/lazygit/config.yml +0 -35
  230. package/dot_config/mako/config +0 -47
  231. package/dot_config/mas/masapps.txt +0 -5
  232. package/dot_config/micro/settings.json +0 -3
  233. package/dot_config/mimeapps.list +0 -77
  234. package/dot_config/minikube/config.json +0 -13
  235. package/dot_config/mise/config.toml +0 -99
  236. package/dot_config/mongosh/mongoshrc.js +0 -68
  237. package/dot_config/mpv/input.conf +0 -47
  238. package/dot_config/mpv/mpv.conf +0 -47
  239. package/dot_config/mycli/myclirc +0 -67
  240. package/dot_config/nano/nanorc +0 -28
  241. package/dot_config/ncdu/config +0 -12
  242. package/dot_config/niri/config.kdl.tmpl +0 -327
  243. package/dot_config/nushell/aliases.nu +0 -18
  244. package/dot_config/nushell/cached_eval.nu +0 -80
  245. package/dot_config/nushell/completions.nu.tmpl +0 -52
  246. package/dot_config/nushell/config.nu.tmpl +0 -86
  247. package/dot_config/nushell/env.nu.tmpl +0 -102
  248. package/dot_config/nushell/functions.nu.tmpl +0 -17
  249. package/dot_config/nvim/init.lua +0 -18
  250. package/dot_config/nvim/lazy-lock.json +0 -58
  251. package/dot_config/nvim/lua/config/autocmds.lua +0 -107
  252. package/dot_config/nvim/lua/config/keymaps.lua +0 -92
  253. package/dot_config/nvim/lua/config/lazy.lua +0 -44
  254. package/dot_config/nvim/lua/config/options.lua +0 -49
  255. package/dot_config/nvim/lua/plugins/ai.lua +0 -75
  256. package/dot_config/nvim/lua/plugins/coding.lua +0 -216
  257. package/dot_config/nvim/lua/plugins/completion.lua +0 -60
  258. package/dot_config/nvim/lua/plugins/dap.lua +0 -412
  259. package/dot_config/nvim/lua/plugins/editor.lua +0 -55
  260. package/dot_config/nvim/lua/plugins/git.lua +0 -10
  261. package/dot_config/nvim/lua/plugins/lsp.lua +0 -156
  262. package/dot_config/nvim/lua/plugins/markdown.lua +0 -18
  263. package/dot_config/nvim/lua/plugins/rust.lua +0 -34
  264. package/dot_config/nvim/lua/plugins/sessions.lua +0 -33
  265. package/dot_config/nvim/lua/plugins/ui.lua +0 -509
  266. package/dot_config/paru/paru.conf +0 -10
  267. package/dot_config/pip/pip.conf.tmpl +0 -32
  268. package/dot_config/powershell/Microsoft.PowerShell_profile.ps1.tmpl +0 -81
  269. package/dot_config/pueue/pueue.yml +0 -34
  270. package/dot_config/pypoetry/config.toml +0 -6
  271. package/dot_config/pyrightconfig.json +0 -5
  272. package/dot_config/raycast/README.md +0 -13
  273. package/dot_config/redis/redisclirc +0 -41
  274. package/dot_config/ripgrep/ripgreprc +0 -21
  275. package/dot_config/shell/00-core-paths.sh.tmpl +0 -141
  276. package/dot_config/shell/05-core-safety.sh +0 -48
  277. package/dot_config/shell/10-secrets.sh +0 -41
  278. package/dot_config/shell/40-fzf-defaults.sh.tmpl +0 -17
  279. package/dot_config/shell/40-ls-colors.sh +0 -49
  280. package/dot_config/shell/50-logic-functions-core.sh.tmpl +0 -11
  281. package/dot_config/shell/50-logic-functions.sh.tmpl +0 -11
  282. package/dot_config/shell/51-logic-functions-extra.sh.tmpl +0 -65
  283. package/dot_config/shell/90-ux-aliases.sh.tmpl +0 -121
  284. package/dot_config/shell/91-ux-aliases-lazy.sh.tmpl +0 -55
  285. package/dot_config/shell/Brewfile +0 -207
  286. package/dot_config/shell/Brewfile.cask +0 -92
  287. package/dot_config/shell/Brewfile.cli +0 -127
  288. package/dot_config/shell/README.md +0 -284
  289. package/dot_config/shell/als_data.txt.tmpl +0 -65
  290. package/dot_config/shell/custom/auto_ls.zsh +0 -20
  291. package/dot_config/shell/custom/context_suggest.zsh +0 -68
  292. package/dot_config/shell/custom/error_analysis.zsh +0 -45
  293. package/dot_config/sops/dot_sops.yaml +0 -23
  294. package/dot_config/starship.toml.tmpl +0 -202
  295. package/dot_config/swaylock/config +0 -43
  296. package/dot_config/systemd/user/dotfiles-maintenance.service +0 -8
  297. package/dot_config/systemd/user/dotfiles-maintenance.timer +0 -11
  298. package/dot_config/systemd/user/pueued.service +0 -12
  299. package/dot_config/systemd/user/ssh-agent.service +0 -12
  300. package/dot_config/task/Taskfile.yml +0 -86
  301. package/dot_config/tflint/tflint.hcl +0 -9
  302. package/dot_config/tmux/tmux.conf.tmpl +0 -223
  303. package/dot_config/topgrade.toml.tmpl +0 -54
  304. package/dot_config/user-dirs.dirs +0 -10
  305. package/dot_config/vscode/extensions.txt +0 -11
  306. package/dot_config/vscode/settings.json.tmpl +0 -82
  307. package/dot_config/waybar/config.jsonc.tmpl +0 -90
  308. package/dot_config/waybar/style.css.tmpl +0 -211
  309. package/dot_config/wezterm/wezterm.lua.tmpl +0 -64
  310. package/dot_config/wget/wgetrc +0 -12
  311. package/dot_config/xdg-desktop-portal/niri-portals.conf +0 -5
  312. package/dot_config/yarn/yarnrc.yml +0 -36
  313. package/dot_config/yazi/keymap.toml +0 -67
  314. package/dot_config/yazi/theme.toml +0 -102
  315. package/dot_config/yazi/yazi.toml +0 -40
  316. package/dot_config/zathura/zathurarc +0 -52
  317. package/dot_config/zellij/config.kdl.tmpl +0 -79
  318. package/dot_config/zsh/dot_zprofile +0 -7
  319. package/dot_config/zsh/dot_zshenv +0 -5
  320. package/dot_config/zsh/dot_zshrc.tmpl +0 -688
  321. package/dot_config/zsh/rc.d/00-alias-shims.zsh +0 -99
  322. package/dot_config/zsh/rc.d/05-ssh-agent.zsh +0 -18
  323. package/dot_config/zsh/rc.d/10-env.zsh.tmpl +0 -28
  324. package/dot_config/zsh/rc.d/20-zinit.zsh +0 -65
  325. package/dot_config/zsh/rc.d/30-options.zsh.tmpl +0 -214
  326. package/dot_config/zsh/rc.d/40-bell.zsh +0 -20
  327. package/dot_config/zsh/rc.d/50-login-fortune.zsh +0 -9
  328. package/dot_config/zsh/rc.d/99-alias-wrapper.zsh +0 -32
  329. package/dot_local/bin/executable_ai-update +0 -195
  330. package/dot_local/bin/executable_ai_core +0 -152
  331. package/dot_local/bin/executable_antigravity +0 -11
  332. package/dot_local/bin/executable_b64 +0 -84
  333. package/dot_local/bin/executable_bm +0 -79
  334. package/dot_local/bin/executable_cb +0 -39
  335. package/dot_local/bin/executable_dot +0 -636
  336. package/dot_local/bin/executable_dot-ai +0 -36
  337. package/dot_local/bin/executable_dot-bootstrap +0 -76
  338. package/dot_local/bin/executable_dot-launch-or-focus +0 -52
  339. package/dot_local/bin/executable_dot-load-benchmark +0 -31
  340. package/dot_local/bin/executable_dot-load-benchmark-pty +0 -77
  341. package/dot_local/bin/executable_dot-theme-sync +0 -952
  342. package/dot_local/bin/executable_dot_completion +0 -57
  343. package/dot_local/bin/executable_dtags +0 -28
  344. package/dot_local/bin/executable_epoch +0 -67
  345. package/dot_local/bin/executable_extract +0 -41
  346. package/dot_local/bin/executable_gbd +0 -52
  347. package/dot_local/bin/executable_gd +0 -42
  348. package/dot_local/bin/executable_git-ai-commit +0 -175
  349. package/dot_local/bin/executable_git-ai-diff +0 -169
  350. package/dot_local/bin/executable_gl +0 -101
  351. package/dot_local/bin/executable_hash +0 -161
  352. package/dot_local/bin/executable_hashsum +0 -160
  353. package/dot_local/bin/executable_hex +0 -115
  354. package/dot_local/bin/executable_jsonv +0 -78
  355. package/dot_local/bin/executable_jwt +0 -94
  356. package/dot_local/bin/executable_kill-port +0 -75
  357. package/dot_local/bin/executable_lorem +0 -118
  358. package/dot_local/bin/executable_mkscript +0 -35
  359. package/dot_local/bin/executable_monitor +0 -56
  360. package/dot_local/bin/executable_myip +0 -51
  361. package/dot_local/bin/executable_notify +0 -24
  362. package/dot_local/bin/executable_open +0 -38
  363. package/dot_local/bin/executable_pw +0 -27
  364. package/dot_local/bin/executable_rec-start +0 -46
  365. package/dot_local/bin/executable_rec-stop +0 -35
  366. package/dot_local/bin/executable_regex +0 -132
  367. package/dot_local/bin/executable_start-niri +0 -8
  368. package/dot_local/bin/executable_tmux-sessionizer +0 -314
  369. package/dot_local/bin/executable_tour +0 -177
  370. package/dot_local/bin/executable_up +0 -23
  371. package/dot_local/bin/executable_update +0 -142
  372. package/dot_local/bin/executable_uuid +0 -87
  373. package/dot_local/bin/executable_win +0 -32
  374. package/dot_local/bin/executable_yamlv +0 -57
  375. package/dot_local/share/bash-completion/completions/dot +0 -72
  376. package/dot_local/share/icons/hicolor/128x128/apps/rousseau.png +0 -0
  377. package/dot_local/share/icons/hicolor/16x16/apps/rousseau.png +0 -0
  378. package/dot_local/share/icons/hicolor/24x24/apps/rousseau.png +0 -0
  379. package/dot_local/share/icons/hicolor/256x256/apps/rousseau.png +0 -0
  380. package/dot_local/share/icons/hicolor/32x32/apps/rousseau.png +0 -0
  381. package/dot_local/share/icons/hicolor/48x48/apps/rousseau.png +0 -0
  382. package/dot_local/share/icons/hicolor/512x512/apps/rousseau.png +0 -0
  383. package/dot_local/share/icons/hicolor/64x64/apps/rousseau.png +0 -0
  384. package/dot_local/share/icons/hicolor/96x96/apps/rousseau.png +0 -0
  385. package/dot_local/share/icons/hicolor/scalable/apps/rousseau.png +0 -0
  386. package/dot_local/share/man/man1/dot.1 +0 -149
  387. package/dot_local/share/mise/plugins/kiro-cli/bin/executable_download +0 -64
  388. package/dot_local/share/mise/plugins/kiro-cli/bin/executable_install +0 -18
  389. package/dot_local/share/mise/plugins/kiro-cli/bin/executable_list-all +0 -13
  390. package/dot_local/share/wayland-sessions/niri.desktop.tmpl +0 -6
  391. package/dot_local/share/zsh/completions/.keep +0 -0
  392. package/dot_local/share/zsh/completions/_dot +0 -287
  393. package/scripts/ci/check-dangerous-chmod.sh +0 -19
  394. package/scripts/ci/check-deps-dev.sh +0 -236
  395. package/scripts/ci/check-insecure-tls.sh +0 -61
  396. package/scripts/ci/check-regression-traceability.sh +0 -67
  397. package/scripts/ci/dot-cli-startup-bench.sh +0 -126
  398. package/scripts/ci/install-chezmoi-verified.sh +0 -67
  399. package/scripts/ci/lint-reusable-pins.sh +0 -78
  400. package/scripts/ci/run-coverage.sh +0 -451
  401. package/scripts/ci/validate-chezmoidata.sh +0 -25
  402. package/scripts/ci/validate-ci-config.sh +0 -224
  403. package/scripts/ci/windows-smoke-test.ps1 +0 -136
  404. package/scripts/docs/build-manual.sh +0 -883
  405. package/scripts/docs/check-manual.sh +0 -213
  406. package/scripts/dot/lib/bento.sh +0 -50
  407. package/scripts/dot/lib/log.sh +0 -200
  408. package/scripts/dot/lib/platform.sh +0 -112
  409. package/scripts/dot/lib/ui.sh +0 -650
  410. package/scripts/dot/lib/utils.sh +0 -377
  411. package/scripts/maintenance/check-updates.sh +0 -131
  412. package/scripts/release/package-policy-bundles.sh +0 -125
package/LICENSE CHANGED
@@ -1,1283 +1,21 @@
1
- # Dotfiles
2
-
3
- Dotfiles uses the following under the MIT License
4
-
5
- The MIT License (MIT)
6
-
7
- Copyright (c) 2015-2026
8
-
9
- Permission is hereby granted, free of charge, to any person obtaining a
10
- copy of this software and associated documentation files (the "Software
11
- "), to deal in the Software without restriction, including without
12
- limitation the rights to use, copy, modify, merge, publish, distribute,
13
- sublicense, and/or sell copies of the Software, and to permit persons to
14
- whom the Software is furnished to do so, subject to the following
15
- conditions:
16
-
17
- The above copyright notice and this permission notice shall be included
18
- in all copies or substantial portions of the Software.
19
-
20
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
21
- OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
23
- IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
24
- CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
25
- TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
26
- SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
27
-
28
- Dotfiles uses the following under the GPL-3.0 license:
29
-
30
- - docutils
31
- - flake8
32
- - spdx-license-ids
33
- - spdx-exceptions
34
- - Sphinx
35
- - sphinx-rtd-theme
36
- - validate-npm-package-license
37
-
38
- GNU GENERAL PUBLIC LICENSE
39
- Version 3, 29 June 2007
40
-
41
- Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
42
- Everyone is permitted to copy and distribute verbatim copies
43
- of this license document, but changing it is not allowed.
44
-
45
- Preamble
46
-
47
- The GNU General Public License is a free, copyleft license for
48
- software and other kinds of works.
49
-
50
- The licenses for most software and other practical works are designed
51
- to take away your freedom to share and change the works. By contrast,
52
- the GNU General Public License is intended to guarantee your freedom to
53
- share and change all versions of a program--to make sure it remains free
54
- software for all its users. We, the Free Software Foundation, use the
55
- GNU General Public License for most of our software; it applies also to
56
- any other work released this way by its authors. You can apply it to
57
- your programs, too.
58
-
59
- When we speak of free software, we are referring to freedom, not
60
- price. Our General Public Licenses are designed to make sure that you
61
- have the freedom to distribute copies of free software (and charge for
62
- them if you wish), that you receive source code or can get it if you
63
- want it, that you can change the software or use pieces of it in new
64
- free programs, and that you know you can do these things.
65
-
66
- To protect your rights, we need to prevent others from denying you
67
- these rights or asking you to surrender the rights. Therefore, you have
68
- certain responsibilities if you distribute copies of the software, or if
69
- you modify it: responsibilities to respect the freedom of others.
70
-
71
- For example, if you distribute copies of such a program, whether
72
- gratis or for a fee, you must pass on to the recipients the same
73
- freedoms that you received. You must make sure that they, too, receive
74
- or can get the source code. And you must show them these terms so they
75
- know their rights.
76
-
77
- Developers that use the GNU GPL protect your rights with two steps:
78
- (1) assert copyright on the software, and (2) offer you this License
79
- giving you legal permission to copy, distribute and/or modify it.
80
-
81
- For the developers' and authors' protection, the GPL clearly explains
82
- that there is no warranty for this free software. For both users' and
83
- authors' sake, the GPL requires that modified versions be marked as
84
- changed, so that their problems will not be attributed erroneously to
85
- authors of previous versions.
86
-
87
- Some devices are designed to deny users access to install or run
88
- modified versions of the software inside them, although the manufacturer
89
- can do so. This is fundamentally incompatible with the aim of
90
- protecting users' freedom to change the software. The systematic
91
- pattern of such abuse occurs in the area of products for individuals to
92
- use, which is precisely where it is most unacceptable. Therefore, we
93
- have designed this version of the GPL to prohibit the practice for those
94
- products. If such problems arise substantially in other domains, we
95
- stand ready to extend this provision to those domains in future versions
96
- of the GPL, as needed to protect the freedom of users.
97
-
98
- Finally, every program is threatened constantly by software patents.
99
- States should not allow patents to restrict development and use of
100
- software on general-purpose computers, but in those that do, we wish to
101
- avoid the special danger that patents applied to a free program could
102
- make it effectively proprietary. To prevent this, the GPL assures that
103
- patents cannot be used to render the program non-free.
104
-
105
- The precise terms and conditions for copying, distribution and
106
- modification follow.
107
-
108
- TERMS AND CONDITIONS
109
-
110
- 1. Definitions.
111
-
112
- "This License" refers to version 3 of the GNU General Public License.
113
-
114
- "Copyright" also means copyright-like laws that apply to other kinds of
115
- works, such as semiconductor masks.
116
-
117
- "The Program" refers to any copyrightable work licensed under this
118
- License. Each licensee is addressed as "you". "Licensees" and
119
- "recipients" may be individuals or organizations.
120
-
121
- To "modify" a work means to copy from or adapt all or part of the work
122
- in a fashion requiring copyright permission, other than the making of an
123
- exact copy. The resulting work is called a "modified version" of the
124
- earlier work or a work "based on" the earlier work.
125
-
126
- A "covered work" means either the unmodified Program or a work based
127
- on the Program.
128
-
129
- To "propagate" a work means to do anything with it that, without
130
- permission, would make you directly or secondarily liable for
131
- infringement under applicable copyright law, except executing it on a
132
- computer or modifying a private copy. Propagation includes copying,
133
- distribution (with or without modification), making available to the
134
- public, and in some countries other activities as well.
135
-
136
- To "convey" a work means any kind of propagation that enables other
137
- parties to make or receive copies. Mere interaction with a user through
138
- a computer network, with no transfer of a copy, is not conveying.
139
-
140
- An interactive user interface displays "Appropriate Legal Notices"
141
- to the extent that it includes a convenient and prominently visible
142
- feature that (1) displays an appropriate copyright notice, and (2)
143
- tells the user that there is no warranty for the work (except to the
144
- extent that warranties are provided), that licensees may convey the
145
- work under this License, and how to view a copy of this License. If
146
- the interface presents a list of user commands or options, such as a
147
- menu, a prominent item in the list meets this criterion.
148
-
149
- 2. Source Code.
150
-
151
- The "source code" for a work means the preferred form of the work
152
- for making modifications to it. "Object code" means any non-source
153
- form of a work.
154
-
155
- A "Standard Interface" means an interface that either is an official
156
- standard defined by a recognized standards body, or, in the case of
157
- interfaces specified for a particular programming language, one that
158
- is widely used among developers working in that language.
159
-
160
- The "System Libraries" of an executable work include anything, other
161
- than the work as a whole, that (a) is included in the normal form of
162
- packaging a Major Component, but which is not part of that Major
163
- Component, and (b) serves only to enable use of the work with that
164
- Major Component, or to implement a Standard Interface for which an
165
- implementation is available to the public in source code form. A
166
- "Major Component", in this context, means a major essential component
167
- (kernel, window system, and so on) of the specific operating system
168
- (if any) on which the executable work runs, or a compiler used to
169
- produce the work, or an object code interpreter used to run it.
170
-
171
- The "Corresponding Source" for a work in object code form means all
172
- the source code needed to generate, install, and (for an executable
173
- work) run the object code and to modify the work, including scripts to
174
- control those activities. However, it does not include the work's
175
- System Libraries, or general-purpose tools or generally available free
176
- programs which are used unmodified in performing those activities but
177
- which are not part of the work. For example, Corresponding Source
178
- includes interface definition files associated with source files for
179
- the work, and the source code for shared libraries and dynamically
180
- linked subprograms that the work is specifically designed to require,
181
- such as by intimate data communication or control flow between those
182
- subprograms and other parts of the work.
183
-
184
- The Corresponding Source need not include anything that users
185
- can regenerate automatically from other parts of the Corresponding
186
- Source.
187
-
188
- The Corresponding Source for a work in source code form is that
189
- same work.
190
-
191
- 3. Basic Permissions.
192
-
193
- All rights granted under this License are granted for the term of
194
- copyright on the Program, and are irrevocable provided the stated
195
- conditions are met. This License explicitly affirms your unlimited
196
- permission to run the unmodified Program. The output from running a
197
- covered work is covered by this License only if the output, given its
198
- content, constitutes a covered work. This License acknowledges your
199
- rights of fair use or other equivalent, as provided by copyright law.
200
-
201
- You may make, run and propagate covered works that you do not
202
- convey, without conditions so long as your license otherwise remains
203
- in force. You may convey covered works to others for the sole purpose
204
- of having them make modifications exclusively for you, or provide you
205
- with facilities for running those works, provided that you comply with
206
- the terms of this License in conveying all material for which you do
207
- not control copyright. Those thus making or running the covered works
208
- for you must do so exclusively on your behalf, under your direction
209
- and control, on terms that prohibit them from making any copies of
210
- your copyrighted material outside their relationship with you.
211
-
212
- Conveying under any other circumstances is permitted solely under
213
- the conditions stated below. Sub-licensing is not allowed; section 10
214
- makes it unnecessary.
215
-
216
- 4. Protecting Users' Legal Rights From Anti-Circumvention Law.
217
-
218
- No covered work shall be deemed part of an effective technological
219
- measure under any applicable law fulfilling obligations under article
220
- 11 of the WIPO copyright treaty adopted on 20 December 1996, or
221
- similar laws prohibiting or restricting circumvention of such
222
- measures.
223
-
224
- When you convey a covered work, you waive any legal power to forbid
225
- circumvention of technological measures to the extent such circumvention
226
- is effected by exercising rights under this License with respect to
227
- the covered work, and you disclaim any intention to limit operation or
228
- modification of the work as a means of enforcing, against the work's
229
- users, your or third parties' legal rights to forbid circumvention of
230
- technological measures.
231
-
232
- 5. Conveying Verbatim Copies.
233
-
234
- You may convey verbatim copies of the Program's source code as you
235
- receive it, in any medium, provided that you conspicuously and
236
- appropriately publish on each copy an appropriate copyright notice;
237
- keep intact all notices stating that this License and any
238
- non-permissive terms added in accord with section 7 apply to the code;
239
- keep intact all notices of the absence of any warranty; and give all
240
- recipients a copy of this License along with the Program.
241
-
242
- You may charge any price or no price for each copy that you convey,
243
- and you may offer support or warranty protection for a fee.
244
-
245
- 6. Conveying Modified Source Versions.
246
-
247
- You may convey a work based on the Program, or the modifications to
248
- produce it from the Program, in the form of source code under the
249
- terms of section 4, provided that you also meet all of these conditions:
250
-
251
- a) The work must carry prominent notices stating that you modified
252
- it, and giving a relevant date.
253
-
254
- b) The work must carry prominent notices stating that it is
255
- released under this License and any conditions added under section
256
-
257
- 7. This requirement modifies the requirement in section 4 to
258
- "keep intact all notices".
259
-
260
- c) You must license the entire work, as a whole, under this
261
- License to anyone who comes into possession of a copy. This
262
- License will therefore apply, along with any applicable section 7
263
- additional terms, to the whole of the work, and all its parts,
264
- regardless of how they are packaged. This License gives no
265
- permission to license the work in any other way, but it does not
266
- invalidate such permission if you have separately received it.
267
-
268
- d) If the work has interactive user interfaces, each must display
269
- Appropriate Legal Notices; however, if the Program has interactive
270
- interfaces that do not display Appropriate Legal Notices, your
271
- work need not make them do so.
272
-
273
- A compilation of a covered work with other separate and independent
274
- works, which are not by their nature extensions of the covered work,
275
- and which are not combined with it such as to form a larger program,
276
- in or on a volume of a storage or distribution medium, is called an
277
- "aggregate" if the compilation and its resulting copyright are not
278
- used to limit the access or legal rights of the compilation's users
279
- beyond what the individual works permit. Inclusion of a covered work
280
- in an aggregate does not cause this License to apply to the other
281
- parts of the aggregate.
282
-
283
- 8. Conveying Non-Source Forms.
284
-
285
- You may convey a covered work in object code form under the terms
286
- of sections 4 and 5, provided that you also convey the
287
- machine-readable Corresponding Source under the terms of this License,
288
- in one of these ways:
289
-
290
- a) Convey the object code in, or embodied in, a physical product
291
- (including a physical distribution medium), accompanied by the
292
- Corresponding Source fixed on a durable physical medium
293
- customarily used for software interchange.
294
-
295
- b) Convey the object code in, or embodied in, a physical product
296
- (including a physical distribution medium), accompanied by a
297
- written offer, valid for at least three years and valid for as
298
- long as you offer spare parts or customer support for that product
299
- model, to give anyone who possesses the object code either (1) a
300
- copy of the Corresponding Source for all the software in the
301
- product that is covered by this License, on a durable physical
302
- medium customarily used for software interchange, for a price no
303
- more than your reasonable cost of physically performing this
304
- conveying of source, or (2) access to copy the
305
- Corresponding Source from a network server at no charge.
306
-
307
- c) Convey individual copies of the object code with a copy of the
308
- written offer to provide the Corresponding Source. This
309
- alternative is allowed only occasionally and noncommercially, and
310
- only if you received the object code with such an offer, in accord
311
- with subsection 6b.
312
-
313
- d) Convey the object code by offering access from a designated
314
- place (gratis or for a charge), and offer equivalent access to the
315
- Corresponding Source in the same way through the same place at no
316
- further charge. You need not require recipients to copy the
317
- Corresponding Source along with the object code. If the place to
318
- copy the object code is a network server, the Corresponding Source
319
- may be on a different server (operated by you or a third party)
320
- that supports equivalent copying facilities, provided you maintain
321
- clear directions next to the object code saying where to find the
322
- Corresponding Source. Regardless of what server hosts the
323
- Corresponding Source, you remain obligated to ensure that it is
324
- available for as long as needed to satisfy these requirements.
325
-
326
- e) Convey the object code using peer-to-peer transmission, provided
327
- you inform other peers where the object code and Corresponding
328
- Source of the work are being offered to the general public at no
329
- charge under subsection 6d.
330
-
331
- A separable portion of the object code, whose source code is excluded
332
- from the Corresponding Source as a System Library, need not be
333
- included in conveying the object code work.
334
-
335
- A "User Product" is either (1) a "consumer product", which means any
336
- tangible personal property which is normally used for personal, family,
337
- or household purposes, or (2) anything designed or sold for incorporation
338
- into a dwelling. In determining whether a product is a consumer product,
339
- doubtful cases shall be resolved in favor of coverage. For a particular
340
- product received by a particular user, "normally used" refers to a
341
- typical or common use of that class of product, regardless of the status
342
- of the particular user or of the way in which the particular user
343
- actually uses, or expects or is expected to use, the product. A product
344
- is a consumer product regardless of whether the product has substantial
345
- commercial, industrial or non-consumer uses, unless such uses represent
346
- the only significant mode of use of the product.
347
-
348
- "Installation Information" for a User Product means any methods,
349
- procedures, authorization keys, or other information required to install
350
- and execute modified versions of a covered work in that User Product from
351
- a modified version of its Corresponding Source. The information must
352
- suffice to ensure that the continued functioning of the modified object
353
- code is in no case prevented or interfered with solely because
354
- modification has been made.
355
-
356
- If you convey an object code work under this section in, or with, or
357
- specifically for use in, a User Product, and the conveying occurs as
358
- part of a transaction in which the right of possession and use of the
359
- User Product is transferred to the recipient in perpetuity or for a
360
- fixed term (regardless of how the transaction is characterized), the
361
- Corresponding Source conveyed under this section must be accompanied
362
- by the Installation Information. But this requirement does not apply
363
- if neither you nor any third party retains the ability to install
364
- modified object code on the User Product (for example, the work has
365
- been installed in ROM).
366
-
367
- The requirement to provide Installation Information does not include a
368
- requirement to continue to provide support service, warranty, or updates
369
- for a work that has been modified or installed by the recipient, or for
370
- the User Product in which it has been modified or installed. Access to a
371
- network may be denied when the modification itself materially and
372
- adversely affects the operation of the network or violates the rules and
373
- protocols for communication across the network.
374
-
375
- Corresponding Source conveyed, and Installation Information provided,
376
- in accord with this section must be in a format that is publicly
377
- documented (and with an implementation available to the public in
378
- source code form), and must require no special password or key for
379
- unpacking, reading or copying.
380
-
381
- 9. Additional Terms.
382
-
383
- "Additional permissions" are terms that supplement the terms of this
384
- License by making exceptions from one or more of its conditions.
385
- Additional permissions that are applicable to the entire Program shall
386
- be treated as though they were included in this License, to the extent
387
- that they are valid under applicable law. If additional permissions
388
- apply only to part of the Program, that part may be used separately
389
- under those permissions, but the entire Program remains governed by
390
- this License without regard to the additional permissions.
391
-
392
- When you convey a copy of a covered work, you may at your option
393
- remove any additional permissions from that copy, or from any part of
394
- it. (Additional permissions may be written to require their own
395
- removal in certain cases when you modify the work.) You may place
396
- additional permissions on material, added by you to a covered work,
397
- for which you have or can give appropriate copyright permission.
398
-
399
- Notwithstanding any other provision of this License, for material you
400
- add to a covered work, you may (if authorized by the copyright holders of
401
- that material) supplement the terms of this License with terms:
402
-
403
- a) Disclaiming warranty or limiting liability differently from the
404
- terms of sections 15 and 16 of this License; or
405
-
406
- b) Requiring preservation of specified reasonable legal notices or
407
- author attributions in that material or in the Appropriate Legal
408
- Notices displayed by works containing it; or
409
-
410
- c) Prohibiting misrepresentation of the origin of that material, or
411
- requiring that modified versions of such material be marked in
412
- reasonable ways as different from the original version; or
413
-
414
- d) Limiting the use for publicity purposes of names of licensors or
415
- authors of the material; or
416
-
417
- e) Declining to grant rights under trademark law for use of some
418
- trade names, trademarks, or service marks; or
419
-
420
- f) Requiring indemnification of licensors and authors of that
421
- material by anyone who conveys the material (or modified versions of
422
- it) with contractual assumptions of liability to the recipient, for
423
- any liability that these contractual assumptions directly impose on
424
- those licensors and authors.
425
-
426
- All other non-permissive additional terms are considered "further
427
- restrictions" within the meaning of section 10. If the Program as you
428
- received it, or any part of it, contains a notice stating that it is
429
- governed by this License along with a term that is a further
430
- restriction, you may remove that term. If a license document contains
431
- a further restriction but permits relicensing or conveying under this
432
- License, you may add to a covered work material governed by the terms
433
- of that license document, provided that the further restriction does
434
- not survive such relicensing or conveying.
435
-
436
- If you add terms to a covered work in accord with this section, you
437
- must place, in the relevant source files, a statement of the
438
- additional terms that apply to those files, or a notice indicating
439
- where to find the applicable terms.
440
-
441
- Additional terms, permissive or non-permissive, may be stated in the
442
- form of a separately written license, or stated as exceptions;
443
- the above requirements apply either way.
444
-
445
- 10. Termination.
446
-
447
- You may not propagate or modify a covered work except as expressly
448
- provided under this License. Any attempt otherwise to propagate or
449
- modify it is void, and will automatically terminate your rights under
450
- this License (including any patent licenses granted under the third
451
- paragraph of section 11).
452
-
453
- However, if you cease all violation of this License, then your
454
- license from a particular copyright holder is reinstated (a)
455
- provisionally, unless and until the copyright holder explicitly and
456
- finally terminates your license, and (b) permanently, if the copyright
457
- holder fails to notify you of the violation by some reasonable means
458
- prior to 60 days after the cessation.
459
-
460
- Moreover, your license from a particular copyright holder is
461
- reinstated permanently if the copyright holder notifies you of the
462
- violation by some reasonable means, this is the first time you have
463
- received notice of violation of this License (for any work) from that
464
- copyright holder, and you cure the violation prior to 30 days after
465
- your receipt of the notice.
466
-
467
- Termination of your rights under this section does not terminate the
468
- licenses of parties who have received copies or rights from you under
469
- this License. If your rights have been terminated and not permanently
470
- reinstated, you do not qualify to receive new licenses for the same
471
- material under section 10.
472
-
473
- 11. Acceptance Not Required for Having Copies.
474
-
475
- You are not required to accept this License in order to receive or
476
- run a copy of the Program. Ancillary propagation of a covered work
477
- occurring solely as a consequence of using peer-to-peer transmission
478
- to receive a copy likewise does not require acceptance. However,
479
- nothing other than this License grants you permission to propagate or
480
- modify any covered work. These actions infringe copyright if you do
481
- not accept this License. Therefore, by modifying or propagating a
482
- covered work, you indicate your acceptance of this License to do so.
483
-
484
- 12. Automatic Licensing of Downstream Recipients.
485
-
486
- Each time you convey a covered work, the recipient automatically
487
- receives a license from the original licensors, to run, modify and
488
- propagate that work, subject to this License. You are not responsible
489
- for enforcing compliance by third parties with this License.
490
-
491
- An "entity transaction" is a transaction transferring control of an
492
- organization, or substantially all assets of one, or subdividing an
493
- organization, or merging organizations. If propagation of a covered
494
- work results from an entity transaction, each party to that
495
- transaction who receives a copy of the work also receives whatever
496
- licenses to the work the party's predecessor in interest had or could
497
- give under the previous paragraph, plus a right to possession of the
498
- Corresponding Source of the work from the predecessor in interest, if
499
- the predecessor has it or can get it with reasonable efforts.
500
-
501
- You may not impose any further restrictions on the exercise of the
502
- rights granted or affirmed under this License. For example, you may
503
- not impose a license fee, royalty, or other charge for exercise of
504
- rights granted under this License, and you may not initiate litigation
505
- (including a cross-claim or counterclaim in a lawsuit) alleging that
506
- any patent claim is infringed by making, using, selling, offering for
507
- sale, or importing the Program or any portion of it.
508
-
509
- 13. Patents.
510
-
511
- A "contributor" is a copyright holder who authorizes use under this
512
- License of the Program or a work on which the Program is based. The
513
- work thus licensed is called the contributor's "contributor version".
514
-
515
- A contributor's "essential patent claims" are all patent claims
516
- owned or controlled by the contributor, whether already acquired or
517
- hereafter acquired, that would be infringed by some manner, permitted
518
- by this License, of making, using, or selling its contributor version,
519
- but do not include claims that would be infringed only as a
520
- consequence of further modification of the contributor version. For
521
- purposes of this definition, "control" includes the right to grant
522
- patent sublicenses in a manner consistent with the requirements of
523
- this License.
524
-
525
- Each contributor grants you a non-exclusive, worldwide, royalty-free
526
- patent license under the contributor's essential patent claims, to
527
- make, use, sell, offer for sale, import and otherwise run, modify and
528
- propagate the contents of its contributor version.
529
-
530
- In the following three paragraphs, a "patent license" is any express
531
- agreement or commitment, however denominated, not to enforce a patent
532
- (such as an express permission to practice a patent or covenant not to
533
- sue for patent infringement). To "grant" such a patent license to a
534
- party means to make such an agreement or commitment not to enforce a
535
- patent against the party.
536
-
537
- If you convey a covered work, knowingly relying on a patent license,
538
- and the Corresponding Source of the work is not available for anyone
539
- to copy, free of charge and under the terms of this License, through a
540
- publicly available network server or other readily accessible means,
541
- then you must either (1) cause the Corresponding Source to be so
542
- available, or (2) arrange to deprive yourself of the benefit of the
543
- patent license for this particular work, or (3) arrange, in a manner
544
- consistent with the requirements of this License, to extend the patent
545
- license to downstream recipients. "Knowingly relying" means you have
546
- actual knowledge that, but for the patent license, your conveying the
547
- covered work in a country, or your recipient's use of the covered work
548
- in a country, would infringe one or more identifiable patents in that
549
- country that you have reason to believe are valid.
550
-
551
- If, pursuant to or in connection with a single transaction or
552
- arrangement, you convey, or propagate by procuring conveyance of, a
553
- covered work, and grant a patent license to some of the parties
554
- receiving the covered work authorizing them to use, propagate, modify
555
- or convey a specific copy of the covered work, then the patent license
556
- you grant is automatically extended to all recipients of the covered
557
- work and works based on it.
558
-
559
- A patent license is "discriminatory" if it does not include within
560
- the scope of its coverage, prohibits the exercise of, or is
561
- conditioned on the non-exercise of one or more of the rights that are
562
- specifically granted under this License. You may not convey a covered
563
- work if you are a party to an arrangement with a third party that is
564
- in the business of distributing software, under which you make payment
565
- to the third party based on the extent of your activity of conveying
566
- the work, and under which the third party grants, to any of the
567
- parties who would receive the covered work from you, a discriminatory
568
- patent license (a) in connection with copies of the covered work
569
- conveyed by you (or copies made from those copies), or (b) primarily
570
- for and in connection with specific products or compilations that
571
- contain the covered work, unless you entered into that arrangement,
572
- or that patent license was granted, prior to 28 March 2007.
573
-
574
- Nothing in this License shall be construed as excluding or limiting
575
- any implied license or other defenses to infringement that may
576
- otherwise be available to you under applicable patent law.
577
-
578
- 14. No Surrender of Others' Freedom.
579
-
580
- If conditions are imposed on you (whether by court order, agreement or
581
- otherwise) that contradict the conditions of this License, they do not
582
- excuse you from the conditions of this License. If you cannot convey a
583
- covered work so as to satisfy simultaneously your obligations under this
584
- License and any other pertinent obligations, then as a consequence you may
585
- not convey it at all. For example, if you agree to terms that obligate you
586
- to collect a royalty for further conveying from those to whom you convey
587
- the Program, the only way you could satisfy both those terms and this
588
- License would be to refrain entirely from conveying the Program.
589
-
590
- 15. Use with the GNU Affero General Public License.
591
-
592
- Notwithstanding any other provision of this License, you have
593
- permission to link or combine any covered work with a work licensed
594
- under version 3 of the GNU Affero General Public License into a single
595
- combined work, and to convey the resulting work. The terms of this
596
- License will continue to apply to the part which is the covered work,
597
- but the special requirements of the GNU Affero General Public License,
598
- section 13, concerning interaction through a network will apply to the
599
- combination as such.
600
-
601
- 16. Revised Versions of this License.
602
-
603
- The Free Software Foundation may publish revised and/or new versions of
604
- the GNU General Public License from time to time. Such new versions will
605
- be similar in spirit to the present version, but may differ in detail to
606
- address new problems or concerns.
607
-
608
- Each version is given a distinguishing version number. If the
609
- Program specifies that a certain numbered version of the GNU General
610
- Public License "or any later version" applies to it, you have the
611
- option of following the terms and conditions either of that numbered
612
- version or of any later version published by the Free Software
613
- Foundation. If the Program does not specify a version number of the
614
- GNU General Public License, you may choose any version ever published
615
- by the Free Software Foundation.
616
-
617
- If the Program specifies that a proxy can decide which future
618
- versions of the GNU General Public License can be used, that proxy's
619
- public statement of acceptance of a version permanently authorizes you
620
- to choose that version for the Program.
621
-
622
- Later license versions may give you additional or different
623
- permissions. However, no additional obligations are imposed on any
624
- author or copyright holder as a result of your choosing to follow a
625
- later version.
626
-
627
- 17. Disclaimer of Warranty.
628
-
629
- THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
630
- APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
631
- HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
632
- OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
633
- THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
634
- PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
635
- IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
636
- ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
637
-
638
- 18. Limitation of Liability.
639
-
640
- IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
641
- WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
642
- THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
643
- GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
644
- USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
645
- DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
646
- PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
647
- EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
648
- SUCH DAMAGES.
649
-
650
- 19. Interpretation of Sections 15 and 16.
651
-
652
- If the disclaimer of warranty and limitation of liability provided
653
- above cannot be given local legal effect according to their terms,
654
- reviewing courts shall apply local law that most closely approximates
655
- an absolute waiver of all civil liability in connection with the
656
- Program, unless a warranty or assumption of liability accompanies a
657
- copy of the Program in return for a fee.
658
-
659
- END OF TERMS AND CONDITIONS
660
-
661
- How to Apply These Terms to Your New Programs
662
-
663
- If you develop a new program, and you want it to be of the greatest
664
- possible use to the public, the best way to achieve this is to make it
665
- free software which everyone can redistribute and change under these terms.
666
-
667
- To do so, attach the following notices to the program. It is safest
668
- to attach them to the start of each source file to most effectively
669
- state the exclusion of warranty; and each file should have at least
670
- the "copyright" line and a pointer to where the full notice is found.
671
-
672
- <one line to give the program's name and a brief idea of what it does.>
673
- Copyright (C) <year> <name of author>
674
-
675
- This program is free software: you can redistribute it and/or modify
676
- it under the terms of the GNU General Public License as published by
677
- the Free Software Foundation, either version 3 of the License, or
678
- (at your option) any later version.
679
-
680
- This program is distributed in the hope that it will be useful,
681
- but WITHOUT ANY WARRANTY; without even the implied warranty of
682
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
683
- GNU General Public License for more details.
684
-
685
- You should have received a copy of the GNU General Public License
686
- along with this program. If not, see <http://www.gnu.org/licenses/>.
687
-
688
- Also add information on how to contact you by electronic and paper mail.
689
-
690
- If the program does terminal interaction, make it output a short
691
- notice like this when it starts in an interactive mode:
692
-
693
- <program> Copyright (C) <year> <name of author>
694
- This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
695
- This is free software, and you are welcome to redistribute it
696
- under certain conditions; type `show c' for details.
697
-
698
- The hypothetical commands `show w' and`show c' should show the appropriate
699
- parts of the General Public License. Of course, your program's commands
700
- might be different; for a GUI interface, you would use an "about box".
701
-
702
- You should also get your employer (if you work as a programmer) or school,
703
- if any, to sign a "copyright disclaimer" for the program, if necessary.
704
- For more information on this, and how to apply and follow the GNU GPL, see
705
- <http://www.gnu.org/licenses/>.
706
-
707
- The GNU General Public License does not permit incorporating your program
708
- into proprietary programs. If your program is a subroutine library, you
709
- may consider it more useful to permit linking proprietary applications with
710
- the library. If this is what you want to do, use the GNU Lesser General
711
- Public License instead of this License. But first, please read
712
- <http://www.gnu.org/philosophy/why-not-lgpl.html>.
713
-
714
- Dotfiles uses the following under the GPL-3.0 license:
715
-
716
- - docutils
717
-
718
- GNU GENERAL PUBLIC LICENSE
719
- Version 2, June 1991
720
-
721
- Copyright (C) 1989, 1991 Free Software Foundation, Inc.
722
- 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
723
- Everyone is permitted to copy and distribute verbatim copies
724
- of this license document, but changing it is not allowed.
725
-
726
- Preamble
727
-
728
- The licenses for most software are designed to take away your
729
- freedom to share and change it. By contrast, the GNU General Public
730
- License is intended to guarantee your freedom to share and change free
731
- software--to make sure the software is free for all its users. This
732
- General Public License applies to most of the Free Software
733
- Foundation's software and to any other program whose authors commit to
734
- using it. (Some other Free Software Foundation software is covered by
735
- the GNU Library General Public License instead.) You can apply it to
736
- your programs, too.
737
-
738
- When we speak of free software, we are referring to freedom, not
739
- price. Our General Public Licenses are designed to make sure that you
740
- have the freedom to distribute copies of free software (and charge for
741
- this service if you wish), that you receive source code or can get it
742
- if you want it, that you can change the software or use pieces of it
743
- in new free programs; and that you know you can do these things.
744
-
745
- To protect your rights, we need to make restrictions that forbid
746
- anyone to deny you these rights or to ask you to surrender the rights.
747
- These restrictions translate to certain responsibilities for you if you
748
- distribute copies of the software, or if you modify it.
749
-
750
- For example, if you distribute copies of such a program, whether
751
- gratis or for a fee, you must give the recipients all the rights that
752
- you have. You must make sure that they, too, receive or can get the
753
- source code. And you must show them these terms so they know their
754
- rights.
755
-
756
- We protect your rights with two steps: (1) copyright the software, and
757
- (2) offer you this license which gives you legal permission to copy,
758
- distribute and/or modify the software.
759
-
760
- Also, for each author's protection and ours, we want to make certain
761
- that everyone understands that there is no warranty for this free
762
- software. If the software is modified by someone else and passed on, we
763
- want its recipients to know that what they have is not the original, so
764
- that any problems introduced by others will not reflect on the original
765
- authors' reputations.
766
-
767
- Finally, any free program is threatened constantly by software
768
- patents. We wish to avoid the danger that redistributors of a free
769
- program will individually obtain patent licenses, in effect making the
770
- program proprietary. To prevent this, we have made it clear that any
771
- patent must be licensed for everyone's free use or not licensed at all.
772
-
773
- The precise terms and conditions for copying, distribution and
774
- modification follow.
775
-
776
- GNU GENERAL PUBLIC LICENSE
777
- TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
778
-
779
- 0. This License applies to any program or other work which contains
780
- a notice placed by the copyright holder saying it may be distributed
781
- under the terms of this General Public License. The "Program", below,
782
- refers to any such program or work, and a "work based on the Program"
783
- means either the Program or any derivative work under copyright law:
784
- that is to say, a work containing the Program or a portion of it,
785
- either verbatim or with modifications and/or translated into another
786
- language. (Hereinafter, translation is included without limitation in
787
- the term "modification".) Each licensee is addressed as "you".
788
-
789
- Activities other than copying, distribution and modification are not
790
- covered by this License; they are outside its scope. The act of
791
- running the Program is not restricted, and the output from the Program
792
- is covered only if its contents constitute a work based on the
793
- Program (independent of having been made by running the Program).
794
- Whether that is true depends on what the Program does.
795
-
796
- 1. You may copy and distribute verbatim copies of the Program's
797
- source code as you receive it, in any medium, provided that you
798
- conspicuously and appropriately publish on each copy an appropriate
799
- copyright notice and disclaimer of warranty; keep intact all the
800
- notices that refer to this License and to the absence of any warranty;
801
- and give any other recipients of the Program a copy of this License
802
- along with the Program.
803
-
804
- You may charge a fee for the physical act of transferring a copy, and
805
- you may at your option offer warranty protection in exchange for a fee.
806
-
807
- 2. You may modify your copy or copies of the Program or any portion
808
- of it, thus forming a work based on the Program, and copy and
809
- distribute such modifications or work under the terms of Section 1
810
- above, provided that you also meet all of these conditions:
811
-
812
- a) You must cause the modified files to carry prominent notices
813
- stating that you changed the files and the date of any change.
814
-
815
- b) You must cause any work that you distribute or publish, that in
816
- whole or in part contains or is derived from the Program or any
817
- part thereof, to be licensed as a whole at no charge to all third
818
- parties under the terms of this License.
819
-
820
- c) If the modified program normally reads commands interactively
821
- when run, you must cause it, when started running for such
822
- interactive use in the most ordinary way, to print or display an
823
- announcement including an appropriate copyright notice and a
824
- notice that there is no warranty (or else, saying that you provide
825
- a warranty) and that users may redistribute the program under
826
- these conditions, and telling the user how to view a copy of this
827
- License. (Exception: if the Program itself is interactive but
828
- does not normally print such an announcement, your work based on
829
- the Program is not required to print an announcement.)
830
-
831
- These requirements apply to the modified work as a whole. If
832
- identifiable sections of that work are not derived from the Program,
833
- and can be reasonably considered independent and separate works in
834
- themselves, then this License, and its terms, do not apply to those
835
- sections when you distribute them as separate works. But when you
836
- distribute the same sections as part of a whole which is a work based
837
- on the Program, the distribution of the whole must be on the terms of
838
- this License, whose permissions for other licensees extend to the
839
- entire whole, and thus to each and every part regardless of who wrote it.
840
-
841
- Thus, it is not the intent of this section to claim rights or contest
842
- your rights to work written entirely by you; rather, the intent is to
843
- exercise the right to control the distribution of derivative or
844
- collective works based on the Program.
845
-
846
- In addition, mere aggregation of another work not based on the Program
847
- with the Program (or with a work based on the Program) on a volume of
848
- a storage or distribution medium does not bring the other work under
849
- the scope of this License.
850
-
851
- 3. You may copy and distribute the Program (or a work based on it,
852
- under Section 2) in object code or executable form under the terms of
853
- Sections 1 and 2 above provided that you also do one of the following:
854
-
855
- a) Accompany it with the complete corresponding machine-readable
856
- source code, which must be distributed under the terms of Sections
857
- 1 and 2 above on a medium customarily used for software interchange; or,
858
-
859
- b) Accompany it with a written offer, valid for at least three
860
- years, to give any third party, for a charge no more than your
861
- cost of physically performing source distribution, a complete
862
- machine-readable copy of the corresponding source code, to be
863
- distributed under the terms of Sections 1 and 2 above on a medium
864
- customarily used for software interchange; or,
865
-
866
- c) Accompany it with the information you received as to the offer
867
- to distribute corresponding source code. (This alternative is
868
- allowed only for noncommercial distribution and only if you
869
- received the program in object code or executable form with such
870
- an offer, in accord with Subsection b above.)
871
-
872
- The source code for a work means the preferred form of the work for
873
- making modifications to it. For an executable work, complete source
874
- code means all the source code for all modules it contains, plus any
875
- associated interface definition files, plus the scripts used to
876
- control compilation and installation of the executable. However, as a
877
- special exception, the source code distributed need not include
878
- anything that is normally distributed (in either source or binary
879
- form) with the major components (compiler, kernel, and so on) of the
880
- operating system on which the executable runs, unless that component
881
- itself accompanies the executable.
882
-
883
- If distribution of executable or object code is made by offering
884
- access to copy from a designated place, then offering equivalent
885
- access to copy the source code from the same place counts as
886
- distribution of the source code, even though third parties are not
887
- compelled to copy the source along with the object code.
888
-
889
- 4\. You may not copy, modify, sublicense, or distribute the Program
890
- except as expressly provided under this License. Any attempt
891
- otherwise to copy, modify, sublicense or distribute the Program is
892
- void, and will automatically terminate your rights under this License.
893
- However, parties who have received copies, or rights, from you under
894
- this License will not have their licenses terminated so long as such
895
- parties remain in full compliance.
896
-
897
- 5. You are not required to accept this License, since you have not
898
- signed it. However, nothing else grants you permission to modify or
899
- distribute the Program or its derivative works. These actions are
900
- prohibited by law if you do not accept this License. Therefore, by
901
- modifying or distributing the Program (or any work based on the
902
- Program), you indicate your acceptance of this License to do so, and
903
- all its terms and conditions for copying, distributing or modifying
904
- the Program or works based on it.
905
-
906
- 6. Each time you redistribute the Program (or any work based on the
907
- Program), the recipient automatically receives a license from the
908
- original licensor to copy, distribute or modify the Program subject to
909
- these terms and conditions. You may not impose any further
910
- restrictions on the recipients' exercise of the rights granted herein.
911
- You are not responsible for enforcing compliance by third parties to
912
- this License.
913
-
914
- 7. If, as a consequence of a court judgment or allegation of patent
915
- infringement or for any other reason (not limited to patent issues),
916
- conditions are imposed on you (whether by court order, agreement or
917
- otherwise) that contradict the conditions of this License, they do not
918
- excuse you from the conditions of this License. If you cannot
919
- distribute so as to satisfy simultaneously your obligations under this
920
- License and any other pertinent obligations, then as a consequence you
921
- may not distribute the Program at all. For example, if a patent
922
- license would not permit royalty-free redistribution of the Program by
923
- all those who receive copies directly or indirectly through you, then
924
- the only way you could satisfy both it and this License would be to
925
- refrain entirely from distribution of the Program.
926
-
927
- If any portion of this section is held invalid or unenforceable under
928
- any particular circumstance, the balance of the section is intended to
929
- apply and the section as a whole is intended to apply in other
930
- circumstances.
931
-
932
- It is not the purpose of this section to induce you to infringe any
933
- patents or other property right claims or to contest validity of any
934
- such claims; this section has the sole purpose of protecting the
935
- integrity of the free software distribution system, which is
936
- implemented by public license practices. Many people have made
937
- generous contributions to the wide range of software distributed
938
- through that system in reliance on consistent application of that
939
- system; it is up to the author/donor to decide if he or she is willing
940
- to distribute software through any other system and a licensee cannot
941
- impose that choice.
942
-
943
- This section is intended to make thoroughly clear what is believed to
944
- be a consequence of the rest of this License.
945
-
946
- 8\. If the distribution and/or use of the Program is restricted in
947
- certain countries either by patents or by copyrighted interfaces, the
948
- original copyright holder who places the Program under this License
949
- may add an explicit geographical distribution limitation excluding
950
- those countries, so that distribution is permitted only in or among
951
- countries not thus excluded. In such case, this License incorporates
952
- the limitation as if written in the body of this License.
953
-
954
- 9. The Free Software Foundation may publish revised and/or new versions
955
- of the General Public License from time to time. Such new versions will
956
- be similar in spirit to the present version, but may differ in detail to
957
- address new problems or concerns.
958
-
959
- Each version is given a distinguishing version number. If the Program
960
- specifies a version number of this License which applies to it and "any
961
- later version", you have the option of following the terms and conditions
962
- either of that version or of any later version published by the Free
963
- Software Foundation. If the Program does not specify a version number of
964
- this License, you may choose any version ever published by the Free Software
965
- Foundation.
966
-
967
- 10. If you wish to incorporate parts of the Program into other free
968
- programs whose distribution conditions are different, write to the author
969
- to ask for permission. For software which is copyrighted by the Free
970
- Software Foundation, write to the Free Software Foundation; we sometimes
971
- make exceptions for this. Our decision will be guided by the two goals
972
- of preserving the free status of all derivatives of our free software and
973
- of promoting the sharing and reuse of software generally.
974
-
975
- NO WARRANTY
976
-
977
- 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
978
- FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
979
- OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
980
- PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
981
- OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
982
- MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
983
- TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
984
- PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
985
- REPAIR OR CORRECTION.
986
-
987
- 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
988
- WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
989
- REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
990
- INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
991
- OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
992
- TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
993
- YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
994
- PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
995
- POSSIBILITY OF SUCH DAMAGES.
996
-
997
- END OF TERMS AND CONDITIONS
998
-
999
- How to Apply These Terms to Your New Programs
1000
-
1001
- If you develop a new program, and you want it to be of the greatest
1002
- possible use to the public, the best way to achieve this is to make it
1003
- free software which everyone can redistribute and change under these terms.
1004
-
1005
- To do so, attach the following notices to the program. It is safest
1006
- to attach them to the start of each source file to most effectively
1007
- convey the exclusion of warranty; and each file should have at least
1008
- the "copyright" line and a pointer to where the full notice is found.
1009
-
1010
- <one line to give the program's name and a brief idea of what it does.>
1011
- Copyright (C) <year> <name of author>
1012
-
1013
- This program is free software; you can redistribute it and/or modify
1014
- it under the terms of the GNU General Public License as published by
1015
- the Free Software Foundation; either version 2 of the License, or
1016
- (at your option) any later version.
1017
-
1018
- This program is distributed in the hope that it will be useful,
1019
- but WITHOUT ANY WARRANTY; without even the implied warranty of
1020
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1021
- GNU General Public License for more details.
1022
-
1023
- You should have received a copy of the GNU General Public License
1024
- along with this program; if not, write to the Free Software
1025
- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
1026
-
1027
- Also add information on how to contact you by electronic and paper mail.
1028
-
1029
- If the program is interactive, make it output a short notice like this
1030
- when it starts in an interactive mode:
1031
-
1032
- Gnomovision version 69, Copyright (C) year name of author
1033
- Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
1034
- This is free software, and you are welcome to redistribute it
1035
- under certain conditions; type `show c' for details.
1036
-
1037
- The hypothetical commands `show w' and`show c' should show the appropriate
1038
- parts of the General Public License. Of course, the commands you use may
1039
- be called something other than `show w' and`show c'; they could even be
1040
- mouse-clicks or menu items--whatever suits your program.
1041
-
1042
- You should also get your employer (if you work as a programmer) or your
1043
- school, if any, to sign a "copyright disclaimer" for the program, if
1044
- necessary. Here is a sample; alter the names:
1045
-
1046
- Yoyodyne, Inc., hereby disclaims all copyright interest in the program
1047
- \`Gnomovision' (which makes passes at compilers) written by James Hacker.
1048
-
1049
- <signature of Ty Coon>, 1 April 1989
1050
- Ty Coon, President of Vice
1051
-
1052
- This General Public License does not permit incorporating your program into
1053
- proprietary programs. If your program is a subroutine library, you may
1054
- consider it more useful to permit linking proprietary applications with the
1055
- library. If this is what you want to do, use the GNU Library General
1056
- Public License instead of this License.
1057
-
1058
- Dotfiles uses the following under the Apache License Version 2.0:
1059
-
1060
- - qrcode-terminal
1061
-
1062
- Apache License
1063
- Version 2.0, January 2004
1064
- http://www.apache.org/licenses/
1065
-
1066
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1067
-
1068
- 1. Definitions.
1069
-
1070
- "License" shall mean the terms and conditions for use, reproduction,
1071
- and distribution as defined by Sections 1 through 9 of this document.
1072
-
1073
- "Licensor" shall mean the copyright owner or entity authorized by
1074
- the copyright owner that is granting the License.
1075
-
1076
- "Legal Entity" shall mean the union of the acting entity and all
1077
- other entities that control, are controlled by, or are under common
1078
- control with that entity. For the purposes of this definition,
1079
- "control" means (i) the power, direct or indirect, to cause the
1080
- direction or management of such entity, whether by contract or
1081
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
1082
- outstanding shares, or (iii) beneficial ownership of such entity.
1083
-
1084
- "You" (or "Your") shall mean an individual or Legal Entity
1085
- exercising permissions granted by this License.
1086
-
1087
- "Source" form shall mean the preferred form for making modifications,
1088
- including but not limited to software source code, documentation
1089
- source, and configuration files.
1090
-
1091
- "Object" form shall mean any form resulting from mechanical
1092
- transformation or translation of a Source form, including but
1093
- not limited to compiled object code, generated documentation,
1094
- and conversions to other media types.
1095
-
1096
- "Work" shall mean the work of authorship, whether in Source or
1097
- Object form, made available under the License, as indicated by a
1098
- copyright notice that is included in or attached to the work
1099
- (an example is provided in the Appendix below).
1100
-
1101
- "Derivative Works" shall mean any work, whether in Source or Object
1102
- form, that is based on (or derived from) the Work and for which the
1103
- editorial revisions, annotations, elaborations, or other modifications
1104
- represent, as a whole, an original work of authorship. For the purposes
1105
- of this License, Derivative Works shall not include works that remain
1106
- separable from, or merely link (or bind by name) to the interfaces of,
1107
- the Work and Derivative Works thereof.
1108
-
1109
- "Contribution" shall mean any work of authorship, including
1110
- the original version of the Work and any modifications or additions
1111
- to that Work or Derivative Works thereof, that is intentionally
1112
- submitted to Licensor for inclusion in the Work by the copyright owner
1113
- or by an individual or Legal Entity authorized to submit on behalf of
1114
- the copyright owner. For the purposes of this definition, "submitted"
1115
- means any form of electronic, verbal, or written communication sent
1116
- to the Licensor or its representatives, including but not limited to
1117
- communication on electronic mailing lists, source code control systems,
1118
- and issue tracking systems that are managed by, or on behalf of, the
1119
- Licensor for the purpose of discussing and improving the Work, but
1120
- excluding communication that is conspicuously marked or otherwise
1121
- designated in writing by the copyright owner as "Not a Contribution."
1122
-
1123
- "Contributor" shall mean Licensor and any individual or Legal Entity
1124
- on behalf of whom a Contribution has been received by Licensor and
1125
- subsequently incorporated within the Work.
1126
-
1127
- 2. Grant of Copyright License. Subject to the terms and conditions of
1128
- this License, each Contributor hereby grants to You a perpetual,
1129
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
1130
- copyright license to reproduce, prepare Derivative Works of,
1131
- publicly display, publicly perform, sublicense, and distribute the
1132
- Work and such Derivative Works in Source or Object form.
1133
-
1134
- 3. Grant of Patent License. Subject to the terms and conditions of
1135
- this License, each Contributor hereby grants to You a perpetual,
1136
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
1137
- (except as stated in this section) patent license to make, have made,
1138
- use, offer to sell, sell, import, and otherwise transfer the Work,
1139
- where such license applies only to those patent claims licensable
1140
- by such Contributor that are necessarily infringed by their
1141
- Contribution(s) alone or by combination of their Contribution(s)
1142
- with the Work to which such Contribution(s) was submitted. If You
1143
- institute patent litigation against any entity (including a
1144
- cross-claim or counterclaim in a lawsuit) alleging that the Work
1145
- or a Contribution incorporated within the Work constitutes direct
1146
- or contributory patent infringement, then any patent licenses
1147
- granted to You under this License for that Work shall terminate
1148
- as of the date such litigation is filed.
1149
-
1150
- 4. Redistribution. You may reproduce and distribute copies of the
1151
- Work or Derivative Works thereof in any medium, with or without
1152
- modifications, and in Source or Object form, provided that You
1153
- meet the following conditions:
1154
-
1155
- (a) You must give any other recipients of the Work or
1156
- Derivative Works a copy of this License; and
1157
-
1158
- (b) You must cause any modified files to carry prominent notices
1159
- stating that You changed the files; and
1160
-
1161
- (c) You must retain, in the Source form of any Derivative Works
1162
- that You distribute, all copyright, patent, trademark, and
1163
- attribution notices from the Source form of the Work,
1164
- excluding those notices that do not pertain to any part of
1165
- the Derivative Works; and
1166
-
1167
- (d) If the Work includes a "NOTICE" text file as part of its
1168
- distribution, then any Derivative Works that You distribute must
1169
- include a readable copy of the attribution notices contained
1170
- within such NOTICE file, excluding those notices that do not
1171
- pertain to any part of the Derivative Works, in at least one
1172
- of the following places: within a NOTICE text file distributed
1173
- as part of the Derivative Works; within the Source form or
1174
- documentation, if provided along with the Derivative Works; or,
1175
- within a display generated by the Derivative Works, if and
1176
- wherever such third-party notices normally appear. The contents
1177
- of the NOTICE file are for informational purposes only and
1178
- do not modify the License. You may add Your own attribution
1179
- notices within Derivative Works that You distribute, alongside
1180
- or as an addendum to the NOTICE text from the Work, provided
1181
- that such additional attribution notices cannot be construed
1182
- as modifying the License.
1183
-
1184
- You may add Your own copyright statement to Your modifications and
1185
- may provide additional or different license terms and conditions
1186
- for use, reproduction, or distribution of Your modifications, or
1187
- for any such Derivative Works as a whole, provided Your use,
1188
- reproduction, and distribution of the Work otherwise complies with
1189
- the conditions stated in this License.
1190
-
1191
- 5. Submission of Contributions. Unless You explicitly state otherwise,
1192
- any Contribution intentionally submitted for inclusion in the Work
1193
- by You to the Licensor shall be under the terms and conditions of
1194
- this License, without any additional terms or conditions.
1195
- Notwithstanding the above, nothing herein shall supersede or modify
1196
- the terms of any separate license agreement you may have executed
1197
- with Licensor regarding such Contributions.
1198
-
1199
- 6. Trademarks. This License does not grant permission to use the trade
1200
- names, trademarks, service marks, or product names of the Licensor,
1201
- except as required for reasonable and customary use in describing the
1202
- origin of the Work and reproducing the content of the NOTICE file.
1203
-
1204
- 7. Disclaimer of Warranty. Unless required by applicable law or
1205
- agreed to in writing, Licensor provides the Work (and each
1206
- Contributor provides its Contributions) on an "AS IS" BASIS,
1207
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
1208
- implied, including, without limitation, any warranties or conditions
1209
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
1210
- PARTICULAR PURPOSE. You are solely responsible for determining the
1211
- appropriateness of using or redistributing the Work and assume any
1212
- risks associated with Your exercise of permissions under this License.
1213
-
1214
- 8. Limitation of Liability. In no event and under no legal theory,
1215
- whether in tort (including negligence), contract, or otherwise,
1216
- unless required by applicable law (such as deliberate and grossly
1217
- negligent acts) or agreed to in writing, shall any Contributor be
1218
- liable to You for damages, including any direct, indirect, special,
1219
- incidental, or consequential damages of any character arising as a
1220
- result of this License or out of the use or inability to use the
1221
- Work (including but not limited to damages for loss of goodwill,
1222
- work stoppage, computer failure or malfunction, or any and all
1223
- other commercial damages or losses), even if such Contributor
1224
- has been advised of the possibility of such damages.
1225
-
1226
- 9. Accepting Warranty or Additional Liability. While redistributing
1227
- the Work or Derivative Works thereof, You may choose to offer,
1228
- and charge a fee for, acceptance of support, warranty, indemnity,
1229
- or other liability obligations and/or rights consistent with this
1230
- License. However, in accepting such obligations, You may act only
1231
- on Your own behalf and on Your sole responsibility, not on behalf
1232
- of any other Contributor, and only if You agree to indemnify,
1233
- defend, and hold each Contributor harmless for any liability
1234
- incurred by, or claims asserted against, such Contributor by reason
1235
- of your accepting any such warranty or additional liability.
1236
-
1237
- END OF TERMS AND CONDITIONS
1238
-
1239
- APPENDIX: How to apply the Apache License to your work.
1240
-
1241
- To apply the Apache License to your work, attach the following
1242
- boilerplate notice, with the fields enclosed by brackets "\[]"
1243
- replaced with your own identifying information. (Don't include
1244
- the brackets!) The text should be enclosed in the appropriate
1245
- comment syntax for the file format. We also recommend that a
1246
- file or class name and description of purpose be included on the
1247
- same "printed page" as the copyright notice for easier
1248
- identification within third-party archives.
1249
-
1250
- Copyright [yyyy][name of copyright owner]
1251
-
1252
- Licensed under the Apache License, Version 2.0 (the "License");
1253
- you may not use this file except in compliance with the License.
1254
- You may obtain a copy of the License at
1255
-
1256
- http://www.apache.org/licenses/LICENSE-2.0
1257
-
1258
- Unless required by applicable law or agreed to in writing, software
1259
- distributed under the License is distributed on an "AS IS" BASIS,
1260
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1261
- See the License for the specific language governing permissions and
1262
- limitations under the License.
1263
-
1264
- ==============================================================
1265
-
1266
- ## This product also include the following software
1267
-
1268
- QRCode for JavaScript
1269
-
1270
- Copyright (c) 2009 Kazuhiko Arase
1271
-
1272
- URL: <http://www.d-project.com/>
1273
-
1274
- Licensed under the MIT license:
1275
- <http://www.opensource.org/licenses/mit-license.php>
1276
-
1277
- The word "QR Code" is registered trademark of
1278
- DENSO WAVE INCORPORATED
1279
- <http://www.denso-wave.com/qrcode/faqpatent-e.html>
1280
-
1281
- Located in ./vendor/QRCode
1282
-
1283
- - project has been modified to work in Node and some refactoring was done for code cleanup
1
+ MIT License
2
+
3
+ Copyright (c) 2015-2026 Sebastien Rousseau
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.