2022-08-01 00:28:53 -04:00
|
|
|
#! /bin/bash
|
|
|
|
|
|
|
|
# Print list of make dependencies for this dotfiles configuration
|
|
|
|
|
|
|
|
conf_dir={{ .paths.config }}
|
|
|
|
|
|
|
|
pkgs=$(cat "$conf_dir/xmonad/make_pkgs")
|
|
|
|
pkgs+="\n"
|
|
|
|
pkgs+=$(cat "$conf_dir/rofi-extras/make_pkgs")
|
|
|
|
pkgs+="\n"
|
|
|
|
pkgs+=$(cat "$conf_dir/xman/make_pkgs")
|
|
|
|
pkgs+="\n"
|
|
|
|
|
2023-10-12 13:59:38 -04:00
|
|
|
{{- if ne .features.desktop_alias "none" }}
|
2022-08-01 00:28:53 -04:00
|
|
|
pkgs+=$(cat "$conf_dir/conky/make_pkgs")
|
|
|
|
pkgs+="\n"
|
|
|
|
{{- end }}
|
|
|
|
|
|
|
|
{{- if .development.emacs }}
|
|
|
|
pkgs+=$(cat "$conf_dir/emacs/make_pkgs")
|
|
|
|
pkgs+="\n"
|
|
|
|
{{- end}}
|
|
|
|
|
|
|
|
echo -e "$pkgs" | sort | uniq
|