From 11e52caaa218e8da2ceb33d6892711952ef4ef7b Mon Sep 17 00:00:00 2001 From: Elis Date: Fri, 20 Jul 2012 20:07:20 +0300 Subject: Added section in installation about Gentoo --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 0a5f848..e26f48b 100644 --- a/README.md +++ b/README.md @@ -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 -- cgit From 6bff7576ebe259f9cb88c75e6131353c1e55a70f Mon Sep 17 00:00:00 2001 From: Elis Axelsson Date: Fri, 20 Jul 2012 19:13:15 +0200 Subject: Fix fish-completion of homeponies --- completion/fish-completion.fish | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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 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 -- cgit