mirror of
https://github.com/vale981/dotfiles
synced 2025-03-05 09:31:43 -05:00
11 lines
233 B
Bash
11 lines
233 B
Bash
#!/bin/bash
|
|
function installInit {
|
|
printHeading "Install OMF"
|
|
|
|
OMF_TMP=$(mktemp)
|
|
curl -L https://get.oh-my.fish > $OMF_TMP
|
|
fish $OMF_TMP
|
|
|
|
printSubHeading "Install OMF Theme"
|
|
fish -c "omf install bobthefish"
|
|
}
|