Add private/chezmoi

Add update_packagelist.sh
This commit is contained in:
Florian Beisel 2024-06-04 17:44:27 +02:00
parent c203c4f481
commit e287de8a2d
2 changed files with 19 additions and 0 deletions

1
private/symlink_chezmoi Normal file
View File

@ -0,0 +1 @@
/Users/beisel/.local/share/chezmoi

View File

@ -0,0 +1,18 @@
#!/bin/bash
# Generate the list of installed brew packages
brews=$(brew list --formula | awk '{print " - "$1}')
# Generate the list of installed cask packages
casks=$(brew list --cask | awk '{print " - "$1}')
# Print the output in the desired format
cat <<EOF
packages:
darwin:
brews:
$brews
casks:
$casks
EOF > {{ .chezmoi.sourceDir }}/.chezmoidata/packages.yaml