Update .chezmoi.toml

Update .chezmoiexternals/lazygit.toml
Update .chezmoiexternals/qt5ct.toml
Update .chezmoiexternals/zathura.toml
Remove .chezmoiscripts/00-backup-id_25519.fish
Update .chezmoiscripts/00-chaotic-aur.sh
This commit is contained in:
punkfairie 2024-09-29 19:39:22 -07:00
parent 519d97cb75
commit bc126a7090
Signed by: punkfairie
GPG key ID: A86AF57F837E320F
6 changed files with 5 additions and 19 deletions

View file

@ -33,7 +33,7 @@ gpgKey = {{ output "get-gpg-key" | trim | quote }}
{{ end -}} {{ end -}}
passphrase = {{ $passphrase | quote }} passphrase = {{ $passphrase | quote }}
osid = {{ $osid | quote }} osid = {{ $osid | quote }}
{{ if eq .chezmoi.hostname "marleycentre" -}} {{ if eq $osid "linux-debian" -}}
isServer = true isServer = true
{{ else }} {{ else }}
isServer = false isServer = false

View file

@ -1,3 +1,4 @@
{{- if (not .isServer) -}}
[".config/lazygit/catppuccin/frappe.yml"] [".config/lazygit/catppuccin/frappe.yml"]
type = "file" type = "file"
url = "https://raw.githubusercontent.com/catppuccin/lazygit/main/themes-mergable/frappe/pink.yml" url = "https://raw.githubusercontent.com/catppuccin/lazygit/main/themes-mergable/frappe/pink.yml"
@ -17,3 +18,4 @@ refreshPeriod = "672h"
type = "file" type = "file"
url = "https://raw.githubusercontent.com/catppuccin/lazygit/main/themes-mergable/mocha/pink.yml" url = "https://raw.githubusercontent.com/catppuccin/lazygit/main/themes-mergable/mocha/pink.yml"
refreshPeriod = "672h" refreshPeriod = "672h"
{{- end -}}

View file

@ -1,4 +1,4 @@
{{- if (and (ne .chezmoi.hostname "marleycentre") (eq .chezmoi.os "linux")) -}} {{- if (and (not .isServer) (eq .chezmoi.os "linux")) -}}
[".config/qt5ct/colors/Catppuccin-Frappe.conf"] [".config/qt5ct/colors/Catppuccin-Frappe.conf"]
type = "file" type = "file"
url = "https://raw.githubusercontent.com/catppuccin/qt5ct/main/themes/Catppuccin-Frappe.conf" url = "https://raw.githubusercontent.com/catppuccin/qt5ct/main/themes/Catppuccin-Frappe.conf"

View file

@ -1,4 +1,4 @@
{{- if (and (ne .chezmoi.hostname "marleycentre") (eq .chezmoi.os "linux")) -}} {{- if (and (not .isServer) (eq .chezmoi.os "linux")) -}}
[".config/zathura/catppuccin-frappe"] [".config/zathura/catppuccin-frappe"]
type = "file" type = "file"
url = "https://raw.githubusercontent.com/catppuccin/zathura/main/src/catppuccin-frappe" url = "https://raw.githubusercontent.com/catppuccin/zathura/main/src/catppuccin-frappe"

View file

@ -1,13 +0,0 @@
#!/usr/bin/env fish
{{ $sshDir := joinPath .chezmoi.homeDir ".ssh" -}}
{{ $pubKey := joinPath $sshDir "id_ed25519.pub" -}}
{{ $privKey := joinPath $sshDir "id_ed25519" -}}
if test -e {{ $pubKey }}
mv {{ $pubKey }} {{ printf "%s%s" $pubKey ".bak" }}
end
if test -e {{ $privKey }}
mv {{ $privKey }} {{ printf "%s%s" $privKey ".bak" }}
end

View file

@ -5,7 +5,4 @@ sudo pacman-key --recv-key 3056513887B78AEB --keyserver keyserver.ubuntu.com
sudo pacman-key --lsign-key 3056513887B78AEB sudo pacman-key --lsign-key 3056513887B78AEB
sudo pacman -U 'https://cdn-mirror.chaotic.cx/chaotic-aur/chaotic-keyring.pkg.tar.zst' sudo pacman -U 'https://cdn-mirror.chaotic.cx/chaotic-aur/chaotic-keyring.pkg.tar.zst'
sudo pacman -U 'https://cdn-mirror.chaotic.cx/chaotic-aur/chaotic-mirrorlist.pkg.tar.zst' sudo pacman -U 'https://cdn-mirror.chaotic.cx/chaotic-aur/chaotic-mirrorlist.pkg.tar.zst'
printf '%b' "[chaotic-aur]\nInclude = /etc/pacman.d/chaotic-mirrorlist" | copyq copy -
echo 'Please paste in /etc/pacman.conf then run sudo pacman -Sy'
{{- end -}} {{- end -}}