13 lines
248 B
Bash
Executable file
13 lines
248 B
Bash
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}"
|