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