This commit is contained in:
Евгений Храмов 2023-02-25 13:56:14 +03:00
parent 36be5da482
commit ca15347e18

@ -1,9 +1,9 @@
#!/usr/bin/env bash
if -f $HOME/.zshrc; then
if test -f $HOME/.zshrc; then
echo 'alias hlna="hlna.py"' >> $HOME/.zshrc
echo 'alias hlna-bot="hlna-bot.py"' >> $HOME/.zshrc
source ~/.zshrc
elif -f $HOME/.config/fish/config.fish; then
elif test -f $HOME/.config/fish/config.fish; then
echo 'alias hlna="hlna.py"' >> $HOME/.config/fish/config.fish
echo 'alias hlna-bot="hlna-bot.py"' >> $HOME/.config/fish/config.fish
source ~/.config/fish/config.fish