Update .local/share/chezmoi/home/.chezmoiscripts/darwin/run_onchange_before_10_install-darwin-dependencies.tmpl, .local/share/chezmoi/home/.chezmoiscripts/darwin/run_onchange_after_set-wallpaper.tmpl, .local/share/chezmoi/home/.chezmoiscripts/darwin/run_onchange_after_20-ensure-zsh-macos.tmpl, .local/share/chezmoi/home/.chezmoiscripts/darwin/run_onchange_after_10_configure-macos.tmpl, .local/share/chezmoi/home/.chezmoiscripts/centos/run_onchange_before_10-install-centos-dependencies.tmpl, .local/share/chezmoi/home/.chezmoiscripts/archlinux/run_onchange_before_10_install-archlinux-dependencies.tmpl, .local/share/chezmoi/home/.chezmoiscripts/debian/run_onchange_before_10-install-debian-dependencies.tmpl, .local/share/chezmoi/home/.chezmoiscripts/fedora/run_onchange_before_10-install-fedora-dependencies.tmpl, .local/share/chezmoi/home/.chezmoiscripts/freebsd/run_onchange_before_11-install-freebsd-packages.tmpl, .local/share/chezmoi/home/.chezmoiscripts/opensuse/run_onchange_before_11-install-opensuse-software.tmpl, .local/share/chezmoi/home/.chezmoiscripts/ubuntu/run_onchange_before_10_install-ubuntu-dependencies.tmpl, .local/share/chezmoi/home/.chezmoiscripts/universal/run_onchange_after_99_bootstrap-zsh-plugins.tmpl, .local/share/chezmoi/home/.chezmoiscripts/universal/run_onchange_after_15_install-asdf-packages.tmpl

This commit is contained in:
Brian Zalewski 2022-12-02 07:26:51 +00:00
parent 6e1a2fa298
commit fefdde6d09
13 changed files with 14 additions and 12 deletions

View file

@ -1,4 +1,4 @@
{{- if .host.distro.id "archlinux" }}
{{- if (eq .host.distro.id "archlinux") }}
#!/usr/bin/env bash
# universal/essential-packages hash: {{ include (joinPath ".chezmoitemplates" "universal" "essential-packages") | sha256sum }}

View file

@ -1,4 +1,4 @@
{{- if .host.distro.id "centos" }}
{{- if (eq .host.distro.id "centos") }}
#!/usr/bin/env bash
# universal/essential-packages hash: {{ include (joinPath ".chezmoitemplates" "universal" "essential-packages") | sha256sum }}

View file

@ -1,4 +1,4 @@
{{- if .host.distro.family "darwin" }}
{{- if (eq .host.distro.family "darwin") }}
#!/usr/bin/env bash
set -x

View file

@ -1,4 +1,4 @@
{{- if .host.distro.family "darwin" }}
{{- if (eq .host.distro.family "darwin") }}
#!/usr/bin/env bash
{{- includeTemplate "universal/logg" }}

View file

@ -1,4 +1,4 @@
{{- if .host.distro.family "darwin" }}
{{- if (eq .host.distro.family "darwin") }}
#!/usr/bin/env bash
# Betelgeuse-macOS wallpaper hash: {{ include (joinPath .chezmoi.homeDir ".local" "src" "betelgeuse" "share" "wallpapers" "Betelgeuse-macOS" "contents" "source.png") | sha256sum }}

View file

@ -1,4 +1,4 @@
{{- if .host.distro.family "darwin" }}
{{- if (eq .host.distro.family "darwin") }}
#!/usr/bin/env bash
# darwin/Brewfile hash: {{ include (joinPath ".chezmoitemplates" "darwin" "Brewfile") | sha256sum }}

View file

@ -1,4 +1,4 @@
{{- if .host.distro.id "debian" }}
{{- if (eq .host.distro.id "debian") }}
#!/usr/bin/env bash
# universal/essential-packages hash: {{ include (joinPath ".chezmoitemplates" "universal" "essential-packages") | sha256sum }}

View file

@ -1,4 +1,4 @@
{{- if .host.distro.id "fedora" }}
{{- if (eq .host.distro.id "fedora") }}
#!/usr/bin/env bash
# universal/essential-packages hash: {{ include (joinPath ".chezmoitemplates" "universal" "essential-packages") | sha256sum }}

View file

@ -1,4 +1,4 @@
{{- if .host.distro.id "freebsd" }}
{{- if (eq .host.distro.id "freebsd") }}
#!/usr/bin/env bash
# universal/essential-packages hash: {{ include (joinPath ".chezmoitemplates" "universal" "essential-packages") | sha256sum }}

View file

@ -1,4 +1,4 @@
{{- if .host.distro.id "opensuse" }}
{{- if (eq .host.distro.id "opensuse") }}
#!/usr/bin/env bash
# universal/essential-packages hash: {{ include (joinPath ".chezmoitemplates" "universal" "essential-packages") | sha256sum }}

View file

@ -1,4 +1,4 @@
{{- if .host.distro.id "ubuntu" }}
{{- if (eq .host.distro.id "ubuntu") }}
#!/usr/bin/env bash
# universal/essential-packages hash: {{ include (joinPath ".chezmoitemplates" "universal" "essential-packages") | sha256sum }}

View file

@ -1,3 +1,4 @@
{{- if (ne .host.distro.family "windows") }}
#!/usr/bin/env bash
# dot_tool-versions.tmpl hash: {{ include "dot_tool-versions.tmpl" | sha256sum }}
@ -12,3 +13,4 @@ if [ -f "$ASDF_DIR/asdf.sh" ] && [ -f ~/.tool-versions ]; then
else
logg warn 'The `$ASDF_DIR/asdf.sh` or `~/.tool-versions` file is not present'
fi
{{ end -}}

View file

@ -1,4 +1,4 @@
{{- if eq .host.headless true }}
{{- if (eq .host.headless true) }}
#!/usr/bin/env bash
# .zshrc hash: {{ include (joinPath .chezmoi.homeDir ".zshrc")| sha256sum }}