mirror of
https://github.com/keanuplayz/dotfiles.git
synced 2024-08-15 02:33:12 +00:00
22 lines
332 B
Bash
Executable file
22 lines
332 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
cd "$(dirname "${BASH_SOURCE[0]}")"
|
|
|
|
mkdir -p out
|
|
|
|
declare -A apps=(
|
|
[iterm]=itermcolors
|
|
[kitty]=conf
|
|
[nvim]=vim
|
|
[setvtrgb]=txt
|
|
[shell]=zsh
|
|
[termux]=properties
|
|
)
|
|
|
|
for app in "${!apps[@]}"; do
|
|
output_file="$app.${apps[$app]}"
|
|
echo "$output_file"
|
|
./"$app".py > ./out/"$output_file"
|
|
done
|