Watch
1
0
Fork
You've already forked dotfiles
0
dotfiles/alacritty/install

13 lines
248 B
Shell
Executable file

#!/usr/bin/env bash
set -euo pipefail
CURDIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
inputs=(
"${CURDIR}/base.yml"
"${CURDIR}/os.yml"
"${CURDIR}/colors.yml"
)
output="${CURDIR}/alacritty.yml"
cat "${inputs[@]}" > "${output}"