🔖 Update config

This commit is contained in:
Smirnov Olexandr 2020-10-31 22:52:51 +02:00
parent 99cc99c7d4
commit 394d56fa69
27 changed files with 478 additions and 398 deletions

18
scripts/change-shell.sh Normal file
View file

@ -0,0 +1,18 @@
#!/bin/sh
case "$1" in
"help"|"--help")
echo "bash Change default shell to bash"
echo "zsh Change default shell to zsh"
echo "fish Change default shell to fish"
;;
bash)
chsh -s $(whitch bash)
;;
zsh)
chsh -s $(whitch zsh)
;;
fish)
chsh -s $(whitch fish)
;;
esac