8 lines
176 B
Bash
Executable file
8 lines
176 B
Bash
Executable file
#!/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
|