13 lines
287 B
Bash
Executable file
13 lines
287 B
Bash
Executable file
#!/bin/bash
|
|
#installs and sets up oh-my-fish
|
|
sudo apt install git fish
|
|
|
|
#Set up configuration
|
|
ln -s "$HOME/stevset/fish/omf" "$HOME/.config/"
|
|
|
|
#download script
|
|
curl -L https://raw.githubusercontent.com/oh-my-fish/oh-my-fish/master/init.fish | fish
|
|
|
|
#setup theme
|
|
omf install bobthefish
|
|
|