This commit is contained in:
Евгений Храмов 2023-02-25 13:52:21 +03:00
parent f3f0f27f9e
commit 279e872723

@ -1,10 +1,9 @@
#!/usr/bin/env bash
if [-e $HOME/.zshrc]; then
if -e $HOME/.zshrc; then
echo 'alias hlna="hlna.py"' >> $HOME/.zshrc
echo 'alias hlna-bot="hlna-bot.py"' >> $HOME/.zshrc
source ~/.zshrc
elif [-e $HOME/.config/fish/config.fish]
then
elif -e $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