ponysay/README.md

123 lines
4.9 KiB
Markdown
Raw Normal View History

2012-08-20 12:51:14 +00:00
`ponysay` — cowsay reimplemention for ponies.
![Derp](http://i.imgur.com/xOJbE.png)
2012-05-02 22:00:09 +00:00
Today your terminal, tomorrow the world!
2012-04-17 09:43:24 +00:00
2012-07-25 03:19:26 +00:00
2012-07-16 23:32:30 +00:00
Installation on GNU/Linux (or other Unix implementations)
---------------------------------------------------------
2012-04-17 09:43:24 +00:00
[Download](/erkin/ponysay/downloads) or clone the project.
2012-11-03 02:47:48 +00:00
In the terminal, `cd` into the ponysay directory and `./setup.py --freedom=partial install` or `python3 setup.py --freedom=partial install`.
You may need to be super user to run `./setup.py --freedom=partial install` without `--private`, on most systems this
can be achieved by running `sudo ./setup.py --freedom=partial install`.
If you only want completely free ponies install use `--freedom=strict` instead of `--freedom=partial`.
For more information we have provided you with an extensive [manual in PDF](https://github.com/erkin/ponysay/blob/master/ponysay.pdf?raw=true).
2012-07-16 23:29:25 +00:00
In order to use ponysay, run:
2012-04-17 09:43:24 +00:00
ponysay "I am just the cutest pony!"
2012-05-02 22:00:09 +00:00
Or if you have a specific pony in your mind:
ponysay -f pinkie "Partay!~"
2012-04-17 09:43:24 +00:00
2012-07-16 23:51:52 +00:00
Run `info ponysay`, `man 6 ponysay` or `ponysay -h` for more information.
2012-07-17 01:53:36 +00:00
A Spanish manual is available: `man -L es 6 ponysay`.
2012-07-16 23:51:52 +00:00
2012-07-21 13:20:47 +00:00
#### Arch Linux
The package is in the official repositories as `community/ponysay`, there is also a git version named `ponysay-git` in AUR.
2012-07-21 13:20:47 +00:00
#### Chakra
2012-09-14 19:35:41 +00:00
A git version of the package is available as `ponysay-git` in CCR, alongside a stable package as `ponysay`.
2012-07-21 13:20:47 +00:00
#### Gentoo Linux
There is a package for Gentoo, to make installation and keeping it up to date easy. You can find it in [this overlay](/etu/aidstu-overlay). The package is named `games-misc/ponysay`.
#### Debian GNU/Linux and Ubuntu
The DEB file can be found [here](http://roryholland.co.uk/misc.html#ponysay) and PPA:s can be found [here](https://launchpad.net/~vincent-c/+archive/ppa) and [here](https://launchpad.net/~blazemore/+archive/ponysay).
2012-07-16 23:46:02 +00:00
2012-04-17 09:43:24 +00:00
### Pony fortune on terminal startup
2012-07-17 01:53:36 +00:00
This requires that you have the `fortune` utility installed. You can install it from your repositories (may be named `fortune-mod`)
2012-07-16 23:51:52 +00:00
or just fetch the source code from [here](ftp://ftp.ibiblio.org/pub/linux/games/amusements/fortune/).
2012-07-16 23:51:52 +00:00
You can try [this](http://www.reddit.com/r/mylittlelinux/comments/srixi/using_ponysay_with_a_ponified_fortune_warning/) script or
[ponypipe](/maandree/ponypipe) to ponify fortunes.
2012-04-17 09:43:24 +00:00
Edit your `~/.bashrc` and add this to the end of the file
fortune | ponysay
2012-04-17 09:43:24 +00:00
Now every time you open a terminal a pony should give your fortune
2012-04-27 09:49:33 +00:00
2012-07-19 02:06:56 +00:00
### Pony quotes
2012-10-25 04:01:37 +00:00
Running `ponysay --q` will give you a random pony saying one it its quote from MLP:FiM, or you can specify the pony: `ponysay -q pinkie`.
Just as with `-f`, `-q` can be used multiple time to to sepecify a set of ponies from which one will be selected randomly.
2012-07-19 02:06:56 +00:00
When running `ponysay -l` or `ponysay -L` the ponies which have quotes will be printed bold or bright (depending on terminal).
2012-05-07 14:29:43 +00:00
### Ponies in TTY (Linux VT)
If you have a custom colour palette edit your `~/.bashrc` and add
if [ "$TERM" = "linux" ]; then
function ponysay
{
2012-07-17 01:53:36 +00:00
exec ponysay "$@"
2012-05-07 14:30:27 +00:00
#RESET PALETTE HERE
2012-05-07 14:29:43 +00:00
}
fi
2012-08-20 12:02:05 +00:00
Read the PDF or info manual for more information.
2012-07-25 03:19:26 +00:00
Installation on Microsoft™ Windows®
-----------------------------------
2012-05-02 22:07:27 +00:00
[¯\\\_(ツ)\_/¯](http://i.imgur.com/2nP5N.png)
2012-07-25 03:19:26 +00:00
2012-07-17 00:08:37 +00:00
Dependencies
------------
### Required runtime dependencies
`coreutils`: `stty` in coreutils used to determine size of the terminal
2012-07-17 00:08:37 +00:00
2012-08-26 15:50:32 +00:00
`python>=3`: written in python 3
2012-07-18 17:39:04 +00:00
2012-07-17 00:08:37 +00:00
### Package building dependencies
2012-08-26 13:48:01 +00:00
`gzip`: used for compressing manuals (suppressable with `./configure --without-info-compression --without-man-compression`)
2012-07-17 00:08:37 +00:00
2012-08-20 12:39:04 +00:00
`texinfo`: used for building info manual (suppressable with `./configure --without-info`)
2012-07-17 00:08:37 +00:00
2012-08-26 15:50:32 +00:00
`python>=3`: the installation process is written in python 3
2012-08-20 19:49:11 +00:00
Run `./dependency-test.sh` if things are not working for you.
2012-08-20 12:39:04 +00:00
2012-07-25 03:19:26 +00:00
2012-05-02 22:07:27 +00:00
FAQ
---
2012-04-27 09:49:33 +00:00
__Q:__ The output looks like a mess in _(TTY/PuTTY/other)_!
2012-08-22 15:36:33 +00:00
__A:__ Unfortunately we cannot make it perfect, see [issue 1](/erkin/ponysay/issues/1). But we have done a lot, read more about how to get the best the current state of the art has to offer in the [manual](/erkin/ponysay/blob/master/ponysay.pdf?raw=true).
2012-04-27 09:49:33 +00:00
__Q:__ You are missing _(my-favourite-pony)_!
__A:__ [Ask](/erkin/ponysay/issues) and we'll add!
2012-04-27 09:49:33 +00:00
__Q:__ The outpus look weird on my _(xfce4-terminal/mate-terminal/xterm)_
__A:__ We use block for print the ponies, if the block are desalignated or you not use a __real__ monospaced font with aligned blocks try another different and mopnospace font like 'Liberation Mono'.
2012-04-27 09:49:33 +00:00
__Q:__ Which programs do you use to generate the pony files?
__A:__ The pony files are actually mostly a bunch of selected [browser ponies](//web.student.tuwien.ac.at/~e0427417/browser-ponies/ponies.html), converted using [util-say](/maandree/util-say),
Other are taken from desktop ponies, and finally another are created specificaly for ponysay.
2012-08-22 15:34:24 +00:00
2012-08-22 15:36:33 +00:00
The [PDF manual](/erkin/ponysay/blob/master/ponysay.pdf?raw=true) should answer most of your questions.