diff options
author | Mattias Andrée <maandree@operamail.com> | 2012-07-20 19:22:42 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2012-07-20 19:22:42 +0200 |
commit | 488a4424272c94149bead16170274c3a99100736 (patch) | |
tree | 8bf5e30b9728657237ca30bd1212b901b7f137e7 | |
parent | 6fcb65b964c0ab40fd4d99317e1f0b30629bfd7e (diff) | |
parent | c6064a3dfc58fa1338753efb6cb2cc58092b3150 (diff) | |
download | ponysay-488a4424272c94149bead16170274c3a99100736.tar.gz ponysay-488a4424272c94149bead16170274c3a99100736.tar.bz2 ponysay-488a4424272c94149bead16170274c3a99100736.zip |
Merge branch 'master' of github.com:erkin/ponysay
-rw-r--r-- | README.md | 3 | ||||
-rw-r--r-- | completion/fish-completion.fish | 8 |
2 files changed, 7 insertions, 4 deletions
@@ -30,6 +30,9 @@ Or if you have a specific pony in your mind: Run `info ponysay`, `man 6 ponysay` or `ponysay -h` for more information. A Spanish manual is available: `man -L es 6 ponysay`. +#### Gentoo +Theres a package for gentoo, to make install and keeping up to date easy. You can find it in [this overlay](/etu/aidstu-overlay). Package is named `games-misc/ponysay`. + ### Pony fortune on terminal startup diff --git a/completion/fish-completion.fish b/completion/fish-completion.fish index 9a0cf23..08b42c4 100644 --- a/completion/fish-completion.fish +++ b/completion/fish-completion.fish @@ -4,11 +4,11 @@ # Author: Elis Axelsson <etu AT elis DOT nu> if test $TERM = "linux" - set -g systempath "/usr/share/ponysay/ttyponies/" - set -g homepath "~/.local/share/ponysay/ttyponies/" + set -g systempath /usr/share/ponysay/ttyponies/ + set -g homepath ~/.local/share/ponysay/ttyponies/ else - set -g systempath "/usr/share/ponysay/ponies/" - set -g homepath "~/.local/share/ponysay/ponies/" + set -g systempath /usr/share/ponysay/ponies/ + set -g homepath ~/.local/share/ponysay/ponies/ end |