9 lines
136 B
Bash
9 lines
136 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
OLD_THEME=$1
|
||
|
NEW_THEME=$2
|
||
|
|
||
|
echo "import = [
|
||
|
\"~/.config/alacritty/$NEW_THEME.toml\",
|
||
|
]" > ~/.config/alacritty/theme.toml
|