Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
O
oh-my-fish
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nanahira
oh-my-fish
Commits
143cc10c
Commit
143cc10c
authored
Jan 12, 2015
by
Bruno
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #300 from bucaran/improve-install
Improve install.fish
parents
626deaf1
05f3ecdf
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
108 additions
and
54 deletions
+108
-54
tools/install.fish
tools/install.fish
+108
-54
No files found.
tools/install.fish
View file @
143cc10c
#!/usr/bin/env fish
#!/usr/bin/env fish
#
# Oh-my-fish is a user-friendly framework for managing your fish-shell
# configuration. It includes optional plugins (brew, git, rails, python,
# node, etc) and themes.
#
# Get the party started with:
#
# curl -L https://github.com/bpinto/oh-my-fish/raw/master/tools/install.fish \
# | fish
#
# Oh-My-Fish currently supports
#
# - Fish 2.0+ [fishshell.com] [github.com/fish-shell/fish-shell]
#
# The installation process is split up in the following steps:
#
# 1. Resolve source repository to default or get from environment variable.
# This allows installers curl -L ..install.fish | FORK=<fork> fish in
# order to test forks of the framework.
#
# 2. Check for already installed copies of Oh-My-Fish. Do not reinstall.
#
# 3. Attempt to pull repository via git clone, if git is not available,
# curl a HTTP GET request directly from github.
#
# 4. Backup original configuration file if there is one and copy new
# configuration file from templates/.
#
# 5. Print fish logo.
#
# 6. Start prompt if the terminal is interactive
#/
# Takes color as first argument, and text to print as other arguments.
set fish_path ~/.oh-my-fish
function colored
set config_path ~/.config/fish/
set_color $argv[1]
set -e argv[1]
echo $argv
set_color normal
end
if test -d ~/.oh-my-fish
# Log a color message.
colored yellow -n You already have Oh My Fish installed
.
# log <color> <string>..
.
echo " You'll need to remove ~/.oh-my-fish if you want to install"
function log
exit
echo -e (set_color $argv[1])$argv[2..-1](set_color normal)
end
end
colored blue Cloning Oh My Fish...
log white "Installing Oh My Fish..."
type git >/dev/null
and git clone https://github.com/bpinto/oh-my-fish.git ~/.oh-my-fish
# Allow installers to specify the source repository.
or begin
if not set -q FORK
echo git not installed
set FORK bpinto
exit
end
end
colored blue Looking for an existing fish config..
.
# Abort installation if oh-my-fish is already installed
.
if test -
f ~/.config/fish/config.fis
h
if test -
d $fish_pat
h
colored yellow -n "Found ~/.config/fish/config.fish
."
log yellow "You already have Oh My Fish installed
."
colored green " Backing up to ~/.config/fish/config.orig
"
log white "Remove $fish_path if you want to reinstall it.
"
mv ~/.config/fish/config.{fish,orig}
exit 1
end
end
colored blue "Using the Oh My Fish template file and adding it to ~/.config/fish/config.fish"
# Either git clone or curl GET repository.
cp ~/.oh-my-fish/templates/config.fish ~/.config/fish/config.fish
log blue "Cloning Oh My Fish from remote repository..."
if type git >/dev/null
git clone "https://github.com/$FORK/oh-my-fish.git" $fish_path
else
log yellow "Install git to pull Oh-My-Fish updates"
log white "Downloading remote zip from Github..."
if curl -sLo $fish_path.zip "https://github.com/$FORK/oh-my-fish/archive/master.zip"
unzip -q $fish_path.zip
mv "oh-my-fish-master" $fish_path
and log green "Oh-My-Fish succesfully downloaded and extracted to $fish_path"
rm -f $fish_path.zip
else
log red "Oh-My-Fish could not be downloaded."
log white "Report an issue → github.com/bpinto/oh-my-fish/issues"
exit 1
end
end
colored green \
# Check any existing config.fish files, backup and add custom template.
' _
log blue "Looking for an existing fish config..."
| |
if test -f $config_path/config.fish
___ | |__ _ __ ___ _ _
log green "Found $config_path/config.fish."
/ _ \| _ \ | _ ` _ \| | | |
log green "Backing up to $config_path/config.orig"
| (_) | | | | | | | | | | |_| |
mv $config_path/config.{fish,orig}
\___/|_| |_| |_| |_| |_|\__, |
end
__/ |
log blue "Adding default configuration file to $config_path/config.fish"
|___/
cp $fish_path/templates/config.fish $config_path/config.fish
'
# Print nice fish logo with colors.
# Print nice fish logo with colors.
echo ' '(set_color F00)'___
log green \
___======____='(set_color FF7F00)'-'(set_color FF0)'-'(set_color FF7F00)'-='(set_color F00)')
" _
/T \_'(set_color FF0)'--='(set_color FF7F00)'=='(set_color F00)')
| |
[ \ '(set_color FF7F00)'('(set_color FF0)'0'(set_color FF7F00)') '(set_color F00)'\~ \_'(set_color FF0)'-='(set_color FF7F00)'='(set_color F00)')
___ | |__ _ __ ___ _ _
\ / )J'(set_color FF7F00)'~~ \\'(set_color FF0)'-='(set_color F00)')
/ _ \| _ \ | _ ` _ \| | | |
\\\\___/ )JJ'(set_color FF7F00)'~'(set_color FF0)'~~ '(set_color F00)'\)
| (_) | | | | | | | | | | |_| |
\_____/JJJ'(set_color FF7F00)'~~'(set_color FF0)'~~ '(set_color F00)'\\
\___/|_| |_| |_| |_| |_|\__, |
'(set_color FF7F00)'/ '(set_color FF0)'\ '(set_color FF0)', \\'(set_color F00)'J'(set_color FF7F00)'~~~'(set_color FF0)'~~ '(set_color FF7F00)'\\
__/ |
(-'(set_color FF0)'\)'(set_color F00)'\='(set_color FF7F00)'|'(set_color FF0)'\\\\\\'(set_color FF7F00)'~~'(set_color FF0)'~~ '(set_color FF7F00)'L_'(set_color FF0)'_
|___/
'(set_color FF7F00)'('(set_color F00)'\\'(set_color FF7F00)'\\) ('(set_color FF0)'\\'(set_color FF7F00)'\\\)'(set_color F00)'_ '(set_color FF0)'\=='(set_color FF7F00)'__
"
'(set_color F00)'\V '(set_color FF7F00)'\\\\'(set_color F00)'\) =='(set_color FF7F00)'=_____ '(set_color FF0)'\\\\\\\\'(set_color FF7F00)'\\\\
'(set_color F00)'\V) \_) '(set_color FF7F00)'\\\\'(set_color FF0)'\\\\JJ\\'(set_color FF7F00)'J\)
echo " "(set_color F00)"___
'(set_color F00)'/'(set_color FF7F00)'J'(set_color FF0)'\\'(set_color FF7F00)'J'(set_color F00)'T\\'(set_color FF7F00)'JJJ'(set_color F00)'J)
___======____="(set_color FF7F00)"-"(set_color FF0)"-"(set_color FF7F00)"-="(set_color F00)")
(J'(set_color FF7F00)'JJ'(set_color F00)'| \UUU)
/T \_"(set_color FF0)"--="(set_color FF7F00)"=="(set_color F00)")
(UU)'(set_color normal)
[ \ "(set_color FF7F00)"("(set_color FF0)"0"(set_color FF7F00)") "(set_color F00)"\~ \_"(set_color FF0)"-="(set_color FF7F00)"="(set_color F00)")
\ / )J"(set_color FF7F00)"~~ \\"(set_color FF0)"-="(set_color F00)")
\\\\___/ )JJ"(set_color FF7F00)"~"(set_color FF0)"~~ "(set_color F00)"\)
\_____/JJJ"(set_color FF7F00)"~~"(set_color FF0)"~~ "(set_color F00)"\\
"(set_color FF7F00)"/ "(set_color FF0)"\ "(set_color FF0)", \\"(set_color F00)"J"(set_color FF7F00)"~~~"(set_color FF0)"~~ "(set_color FF7F00)"\\
(-"(set_color FF0)"\)"(set_color F00)"\="(set_color FF7F00)"|"(set_color FF0)"\\\\\\"(set_color FF7F00)"~~"(set_color FF0)"~~ "(set_color FF7F00)"L_"(set_color FF0)"_
"(set_color FF7F00)"("(set_color F00)"\\"(set_color FF7F00)"\\) ("(set_color FF0)"\\"(set_color FF7F00)"\\\)"(set_color F00)"_ "(set_color FF0)"\=="(set_color FF7F00)"__
"(set_color F00)"\V "(set_color FF7F00)"\\\\"(set_color F00)"\) =="(set_color FF7F00)"=_____ "(set_color FF0)"\\\\\\\\"(set_color FF7F00)"\\\\
"(set_color F00)"\V) \_) "(set_color FF7F00)"\\\\"(set_color FF0)"\\\\JJ\\"(set_color FF7F00)"J\)
"(set_color F00)"/"(set_color FF7F00)"J"(set_color FF0)"\\"(set_color FF7F00)"J"(set_color F00)"T\\"(set_color FF7F00)"JJJ"(set_color F00)"J)
(J"(set_color FF7F00)"JJ"(set_color F00)"| \UUU)\\
(UU)"(set_color normal)\n\n
echo
log green "...is now installed."
echo
colored green ' ....is now installed.'
# Run shell after installation.
# Launch fish after installation, loading Oh My Fish for the first time.
exec fish < /dev/tty
# Safeguard for non-interactive terminals, automated installers, etc.
if status --is-interactive
exec fish < /dev/tty
end
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment