diff options
author | Mattias Andrée <maandree@operamail.com> | 2012-07-20 10:14:43 -0700 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2012-07-20 10:14:43 -0700 |
commit | c6064a3dfc58fa1338753efb6cb2cc58092b3150 (patch) | |
tree | 228840c05e67498a5b710a93a6c4a24c9f1f1895 | |
parent | 39968bb8318857b65d0c37e334526189e0a0332e (diff) | |
parent | 6bff7576ebe259f9cb88c75e6131353c1e55a70f (diff) | |
download | ponysay-c6064a3dfc58fa1338753efb6cb2cc58092b3150.tar.gz ponysay-c6064a3dfc58fa1338753efb6cb2cc58092b3150.tar.bz2 ponysay-c6064a3dfc58fa1338753efb6cb2cc58092b3150.zip |
Merge pull request #44 from etu/master
Added info about my gentoo-overlay with my ponysay ebuilds ;-)
-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 |