mirror of
https://forge.chapril.org/tykayn/workflow
synced 2025-06-20 01:44:43 +02:00
9 lines
232 B
Bash
9 lines
232 B
Bash
![]() |
#!/bin/bash
|
||
|
echo " ------ install oh my zsh ------"
|
||
|
if ! -d ~/.oh-my-zsh; then
|
||
|
echo "installer oh my zsh"
|
||
|
cd
|
||
|
sudo apt install zsh
|
||
|
sh -c "$(wget https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh -O -)"
|
||
|
fi
|