dotfiles/dot_bin/executable_bootstrap_make_p...

25 lines
503 B
Bash

#! /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"
{{- if ne .features.desktop_alias "none" }}
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