9 lines
176 B
Text
9 lines
176 B
Text
|
#!/bin/bash
|
||
|
if [ $SHELL = '/bin/zsh' ]; then
|
||
|
exit 0
|
||
|
else
|
||
|
chsh --shell /bin/zsh
|
||
|
|
||
|
git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ~/powerlevel10k
|
||
|
fi
|