Update .chezmoi.toml
Update .chezmoiexternals/awesomewm.toml Update .chezmoiexternals/rofi.toml Update .chezmoiexternals/zathura.toml Update .chezmoiscripts/00-aur.sh
This commit is contained in:
parent
b042b5d03e
commit
800ee5500b
5 changed files with 14 additions and 2 deletions
|
@ -1,4 +1,9 @@
|
|||
{{ $passphrase := promptStringOnce . "passphrase" "passphrase" -}}
|
||||
{{- $passphrase := promptStringOnce . "passphrase" "passphrase" -}}
|
||||
|
||||
{{- $osid := .chezmoi.os -}}
|
||||
{{- if hasKey .chezmoi.osRelease "id" -}}
|
||||
{{- $osid = printf "%s-%s" .chezmoi.os .chezmoi.osRelease.id -}}
|
||||
{{- end -}}
|
||||
|
||||
progress = true
|
||||
|
||||
|
@ -16,6 +21,7 @@ args = ["--batch", "--passphrase", {{ $passphrase | quote }}, "--no-symkey-cache
|
|||
gpgKey = {{ output "get-gpg-key" | trim | quote }}
|
||||
{{- end }}
|
||||
passphrase = {{ $passphrase | quote }}
|
||||
osid = {{ $osid | quote }}
|
||||
|
||||
[data.drapeau]
|
||||
colorscheme = 'catppuccin-macchiato'
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
{{- if eq .osid "linux-arch" -}}
|
||||
[".config/awesome/lib/bling"]
|
||||
type = "git-repo"
|
||||
url = "https://github.com/BlingCorp/bling.git"
|
||||
|
@ -17,3 +18,4 @@ refreshPeriod = "672h"
|
|||
type = "git-repo"
|
||||
url = "https://github.com/andOrlando/rubato.git"
|
||||
refreshPeriod = "672h"
|
||||
{{- end -}}
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
{{- if eq .osid "linux-arch" -}}
|
||||
[".local/share/rofi/themes/catppuccin-frappe.rasi"]
|
||||
type = "file"
|
||||
url = "https://raw.githubusercontent.com/catppuccin/rofi/main/basic/.local/share/rofi/themes/catppuccin-frappe.rasi"
|
||||
|
@ -17,3 +18,4 @@ refreshPeriod = "672h"
|
|||
type = "file"
|
||||
url = "https://raw.githubusercontent.com/catppuccin/rofi/main/basic/.local/share/rofi/themes/catppuccin-mocha.rasi"
|
||||
refreshPeriod = "672h"
|
||||
{{- end -}}
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
{{- if ne .chezmoi.hostname "marleycentre" -}}
|
||||
[".config/zathura/catppuccin-frappe"]
|
||||
type = "file"
|
||||
url = "https://raw.githubusercontent.com/catppuccin/zathura/main/src/catppuccin-frappe"
|
||||
|
@ -17,3 +18,4 @@ refreshPeriod = "672h"
|
|||
type = "file"
|
||||
url = "https://raw.githubusercontent.com/catppuccin/zathura/main/src/catppuccin-mocha"
|
||||
refreshPeriod = "672h"
|
||||
{{- end -}}
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{{ if (and (eq .chezmoi.osRelease.id "arch") (not (lookPath "yay"))) -}}
|
||||
{{- if (and (eq .chezmoi.osRelease.id "arch") (not (lookPath "yay"))) -}}
|
||||
#!/usr/bin/env bash
|
||||
|
||||
sudo pacman -S --needed git base-devel
|
||||
|
|
Loading…
Reference in a new issue