mirror of
https://github.com/oh-my-fish/oh-my-fish.git
synced 2024-11-22 15:15:27 +08:00
Back to oh-my-fish organization
This commit is contained in:
parent
4e980b2ac4
commit
ae0e4388b6
|
@ -1,5 +1,5 @@
|
|||
<div align="center">
|
||||
<a href="http://github.com/fish-shell/omf">
|
||||
<a href="http://github.com/oh-my-fish/oh-my-fish">
|
||||
<img width=120px src="https://cloud.githubusercontent.com/assets/8317250/8510172/f006f0a4-230f-11e5-98b6-5c2e3c87088f.png">
|
||||
</a>
|
||||
</div>
|
||||
|
@ -22,7 +22,7 @@ Thanks for taking the time to read this guide and please _do_ contribute to Oh M
|
|||
|
||||
## Issues
|
||||
|
||||
Please [open an issue](https://github.com/fish-shell/omf/issues) for bug reports / patches. Include your OS version, code examples, stack traces and everything you can to help you debug your problem.
|
||||
Please [open an issue](https://github.com/oh-my-fish/oh-my-fish/issues) for bug reports / patches. Include your OS version, code examples, stack traces and everything you can to help you debug your problem.
|
||||
|
||||
If you have a new feature or large change in mind, please open a new issue with your suggestion to discuss the idea together.
|
||||
|
||||
|
|
2
FAQ.md
2
FAQ.md
|
@ -1,5 +1,5 @@
|
|||
<div align="center">
|
||||
<a href="http://github.com/fish-shell/omf">
|
||||
<a href="http://github.com/oh-my-fish/oh-my-fish">
|
||||
<img width=120px src="https://cloud.githubusercontent.com/assets/8317250/8510172/f006f0a4-230f-11e5-98b6-5c2e3c87088f.png">
|
||||
</a>
|
||||
</div>
|
||||
|
|
20
README.md
20
README.md
|
@ -9,7 +9,7 @@
|
|||
<br>
|
||||
|
||||
<p align="center">
|
||||
<a href="https://github.com/fish-shell/oh-my-fish/blob/master/README.md">
|
||||
<a href="https://github.com/oh-my-fish/oh-my-fish/blob/master/README.md">
|
||||
<img width="160px" src="https://cloud.githubusercontent.com/assets/8317250/8510172/f006f0a4-230f-11e5-98b6-5c2e3c87088f.png">
|
||||
</a>
|
||||
</p>
|
||||
|
@ -25,14 +25,14 @@
|
|||
|
|
||||
<b><a href="#advanced">Advanced</a></b>
|
||||
|
|
||||
<b><a href="https://github.com/fish-shell/oh-my-fish/wiki/Screencasts">Screencasts</a></b>
|
||||
<b><a href="https://github.com/oh-my-fish/oh-my-fish/wiki/Screencasts">Screencasts</a></b>
|
||||
|
|
||||
<b><a href="/CONTRIBUTING.md">Contributing</a></b>
|
||||
|
|
||||
<b><a href="/FAQ.md">FAQ</a></b>
|
||||
|
||||
<p align="center">
|
||||
<a href="https://gitter.im/fish-shell/oh-my-fish?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge">
|
||||
<a href="https://gitter.im/oh-my-fish/oh-my-fish?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge">
|
||||
<img src="https://badges.gitter.im/Join%20Chat.svg">
|
||||
</a>
|
||||
</p>
|
||||
|
@ -44,19 +44,19 @@
|
|||
|
||||
Oh My Fish is an all-purpose framework for the [fishshell][Fishshell]. It looks after your configuration, themes and packages. It's lightning fast and easy to use.
|
||||
|
||||
We love contributions, [fork and send us a PR](https://github.com/fish-shell/oh-my-fish/fork).
|
||||
We love contributions, [fork and send us a PR](https://github.com/oh-my-fish/oh-my-fish/fork).
|
||||
|
||||
# Install
|
||||
|
||||
```fish
|
||||
curl -L git.io/omf | sh
|
||||
curl -L github.com/oh-my-fish/oh-my-fish/raw/master/bin/install | sh
|
||||
omf help
|
||||
```
|
||||
|
||||
Or _download_ and run it yourself:
|
||||
|
||||
```fish
|
||||
curl -L git.io/omf > install
|
||||
curl -L github.com/oh-my-fish/oh-my-fish/raw/master/bin/install > install
|
||||
chmod +x install
|
||||
./install
|
||||
```
|
||||
|
@ -235,13 +235,13 @@ MIT © [Oh My Fish][contributors] :metal:
|
|||
|
||||
[fishshell]: http://fishshell.com
|
||||
|
||||
[contributors]: https://github.com/fish-shell/oh-my-fish/graphs/contributors
|
||||
[contributors]: https://github.com/oh-my-fish/oh-my-fish/graphs/contributors
|
||||
|
||||
[travis-badge]: http://img.shields.io/travis/fish-shell/oh-my-fish.svg?style=flat-square
|
||||
[travis-url]: https://travis-ci.org/fish-shell/oh-my-fish
|
||||
[travis-badge]: http://img.shields.io/travis/oh-my-fish/oh-my-fish.svg?style=flat-square
|
||||
[travis-url]: https://travis-ci.org/oh-my-fish/oh-my-fish
|
||||
|
||||
[fish-badge]: https://img.shields.io/badge/fish-v2.2.0-007EC7.svg?style=flat-square
|
||||
|
||||
[license-badge]: https://img.shields.io/badge/license-MIT-007EC7.svg?style=flat-square
|
||||
|
||||
[omf-pulls-link]: https://github.com/fish-shell/oh-my-fish/pulls
|
||||
[omf-pulls-link]: https://github.com/oh-my-fish/oh-my-fish/pulls
|
||||
|
|
10
bin/install
10
bin/install
|
@ -1,9 +1,9 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# USAGE
|
||||
# #1: curl -L git.io/omf | sh
|
||||
# #2: curl -L git.io/omf > install && chmod +x install && ./install
|
||||
# #3: OMF_CONFIG=~/.omf curl -L git.io/omf | sh
|
||||
# #1: curl -L github.com/oh-my-fish/oh-my-fish/raw/master/bin/install | sh
|
||||
# #2: curl -L github.com/oh-my-fish/oh-my-fish/raw/master/bin/install > install && chmod +x install && ./install
|
||||
# #3: OMF_CONFIG=~/.omf curl -L github.com/oh-my-fish/oh-my-fish/raw/master/bin/install | sh
|
||||
#
|
||||
# ENV
|
||||
# XDG_DATA_HOME Base directory (~/.local/share)
|
||||
|
@ -30,7 +30,7 @@ test -z ${XDG_CONFIG_HOME+_} && XDG_CONFIG_HOME="${HOME}/.config"
|
|||
test -z ${OMF_PATH+_} && OMF_PATH="${XDG_DATA_HOME}/omf"
|
||||
test -z ${OMF_CONFIG+_} && OMF_CONFIG="${XDG_CONFIG_HOME}/omf"
|
||||
|
||||
test -z ${OMF_REPO_URI+_} && OMF_REPO_URI="https://github.com/fish-shell/oh-my-fish"
|
||||
test -z ${OMF_REPO_URI+_} && OMF_REPO_URI="https://github.com/oh-my-fish/oh-my-fish"
|
||||
test -z ${OMF_REPO_BRANCH+_} && OMF_REPO_BRANCH="master"
|
||||
|
||||
die() {
|
||||
|
@ -115,5 +115,5 @@ if omf_install; then
|
|||
# Do not swap process if running in a CI environment.
|
||||
[ -z ${CI+_} ] || exit 0 && exec "fish" < /dev/tty
|
||||
else
|
||||
die "Oh My Fish couldn't install, but you can complain here → git.io/omf-issues"
|
||||
die "Oh My Fish couldn't install, but you can complain here → github.com/oh-my-fish/oh-my-fish/issues"
|
||||
fi
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
# + Emit init_<pkg> event
|
||||
#
|
||||
# + Autoload {$OMF_PATH,$OMF_CONFIG}/functions
|
||||
# + Source {$OMF_PATH,$OMF_CONFIG}/events → fish-shell/fish-shell/issues/845
|
||||
# + Source {$OMF_PATH,$OMF_CONFIG}/events
|
||||
# + Source $OMF_CONFIG/init.fish
|
||||
#
|
||||
# ENV
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<p align="center">
|
||||
<a href="https://github.com/fish-shell/omf/blob/master/README.md">
|
||||
<a href="https://github.com/oh-my-fish/oh-my-fish/blob/master/README.md">
|
||||
<img width="100px" src="https://cloud.githubusercontent.com/assets/8317250/8510172/f006f0a4-230f-11e5-98b6-5c2e3c87088f.png">
|
||||
</a>
|
||||
</p>
|
||||
|
|
|
@ -35,7 +35,7 @@ function omf.submit -a name url -d "Submit a package to the registry"
|
|||
else
|
||||
echo "$url" > $OMF_PATH/db/$name
|
||||
echo (omf::em)"$pkg added to the local "(dirname $name)" registry."(omf::off)
|
||||
echo "Want to contribute? Send us a PR → github.com/fish-shell/omf"
|
||||
echo "Want to contribute? Send us a PR → github.com/oh-my-fish/oh-my-fish"
|
||||
return 0
|
||||
end
|
||||
end
|
||||
|
|
|
@ -128,7 +128,7 @@ function omf -d "Oh My Fish"
|
|||
echo (omf::em)"Oh My Fish is up to date."(omf::off)
|
||||
else
|
||||
echo (omf::err)"Oh My Fish failed to update."(omf::off)
|
||||
echo "Please open a new issue here → "(omf::em)"git.io/omf-issues"(omf::off)
|
||||
echo "Please open a new issue here → "(omf::em)"github.com/oh-my-fish/oh-my-fish/issues"(omf::off)
|
||||
end
|
||||
omf.theme (cat $OMF_CONFIG/theme)
|
||||
omf.install_package (omf.list_installed_packages)
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
![][license-badge]
|
||||
|
||||
<div align="center">
|
||||
<a href="http://github.com/fish-shell/oh-my-fish">
|
||||
<a href="http://github.com/oh-my-fish/oh-my-fish">
|
||||
<img width=90px src="https://cloud.githubusercontent.com/assets/8317250/8510172/f006f0a4-230f-11e5-98b6-5c2e3c87088f.png">
|
||||
</a>
|
||||
</div>
|
||||
|
@ -33,7 +33,7 @@ $ {{NAME}}
|
|||
[mit]: http://opensource.org/licenses/MIT
|
||||
[author]: http://github.com/{{USER}}
|
||||
[contributors]: https://github.com/{{USER}}/pkg-{{NAME}}/graphs/contributors
|
||||
[omf-link]: https://www.github.com/fish-shell/oh-my-fish
|
||||
[omf-link]: https://www.github.com/oh-my-fish/oh-my-fish
|
||||
|
||||
[license-badge]: https://img.shields.io/badge/license-MIT-007EC7.svg?style=flat-square
|
||||
[travis-badge]: http://img.shields.io/travis/{{USER}}/{{NAME}}.svg?style=flat-square
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<div align="center">
|
||||
<a href="http://github.com/fish-shell/omf">
|
||||
<a href="http://github.com/oh-my-fish/oh-my-fish">
|
||||
<img width=90px src="https://cloud.githubusercontent.com/assets/8317250/8510172/f006f0a4-230f-11e5-98b6-5c2e3c87088f.png">
|
||||
</a>
|
||||
</div>
|
||||
|
@ -33,7 +33,7 @@ $ omf u {{NAME}}
|
|||
[mit]: http://opensource.org/licenses/MIT
|
||||
[author]: http://github.com/{{USER}}
|
||||
[contributors]: https://github.com/{{USER}}/{{NAME}}/graphs/contributors
|
||||
[omf-link]: https://www.github.com/fish-shell/omf
|
||||
[omf-link]: https://www.github.com/oh-my-fish/oh-my-fish
|
||||
|
||||
[license-badge]: https://img.shields.io/badge/license-MIT-007EC7.svg?style=flat-square
|
||||
[travis-badge]: http://img.shields.io/travis/{{USER}}/{{NAME}}.svg?style=flat-square
|
||||
|
|
Loading…
Reference in New Issue
Block a user