mirror of
https://github.com/vale981/dotfiles
synced 2025-03-04 17:11:39 -05:00
9 lines
189 B
Bash
9 lines
189 B
Bash
#!/bin/bash
|
|
function installInit {
|
|
printHeading "Install OMF"
|
|
|
|
curl -L https://get.oh-my.fish | fish
|
|
|
|
printSubHeading "Install OMF Theme"
|
|
fish -c "omf install bobthefish"
|
|
}
|