diff options
author | Galen Guyer <galen@galenguyer.com> | 2022-08-21 18:24:35 -0400 |
---|---|---|
committer | Galen Guyer <galen@galenguyer.com> | 2022-08-21 18:24:35 -0400 |
commit | f668e009263cdafdebae3607719ae19bfd9dc249 (patch) | |
tree | b9379edfa40b18c237eb7d38e6a2af8e0829028a /modules/20-fonts | |
parent | 36fbe057d2235cbc12c3e7e85d88486d02be6c12 (diff) |
begin configuration of new machine
Diffstat (limited to 'modules/20-fonts')
-rw-r--r-- | modules/20-fonts/install.sh | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/modules/20-fonts/install.sh b/modules/20-fonts/install.sh new file mode 100644 index 0000000..c34fb5f --- /dev/null +++ b/modules/20-fonts/install.sh @@ -0,0 +1,10 @@ +_script="$(realpath ${BASH_SOURCE[0]})" +_scriptname="$(basename $_script)" +_scriptdir="$(dirname $_script)" +_modulename="$(basename $_scriptdir)" +DOT_MODULE_NAME="fonts" + +function preinstall() { + # TODO: Check if these are installed + PACKAGES+=("adobe-source-code-pro-fonts" "gnu-free-fonts" "noto-fonts" "noto-fonts-cjk" "noto-fonts-emoji" "noto-fonts-extra" "ttf-liberation") +} |