Convert to ZSH plugin

master
parent 5d075cb843
commit 1a4f34cdff
Signed by: millironx
GPG Key ID: 139C07724802BC5D

@ -1,13 +1,19 @@
# cowsay-cows # cowsay-cows
cowfiles in the original spirit of cowsay, except that all of these are cowfiles in the original spirit of cowsay, except that all of these are actually bovine
actually bovine
Install using [Antigen](https://github.com/zsh-users/antigen)
```bash
antigen bundle millironx/cowsaycows
```
## Examples ## Examples
### bell ### bell
```plaintext ```shellsession
$ cowsay -f bell
_______________________________________ _______________________________________
/ The hills are alive with the sound of \ / The hills are alive with the sound of \
\ moo-sic / \ moo-sic /
@ -27,7 +33,8 @@ cowfiles in the original spirit of cowsay, except that all of these are
### birdstale ### birdstale
```plaintext ```shellsession
$ cowsay -f birdstale
_______________________________________ _______________________________________
/ Grandpa said there was a moral there, \ / Grandpa said there was a moral there, \
| but you had to figure it out for | | but you had to figure it out for |
@ -42,7 +49,8 @@ cowfiles in the original spirit of cowsay, except that all of these are
### bull ### bull
```plaintext ```shellsession
$ cowsay -f bull
______________________ ______________________
< Actually, I'm a bull > < Actually, I'm a bull >
---------------------- ----------------------
@ -53,9 +61,12 @@ cowfiles in the original spirit of cowsay, except that all of these are
|| || || ||
``` ```
**BONUS**: aliased to `bullsay`
### compucow ### compucow
```plaintext ```shellsession
$ cowsay -f compucow
_______________________________________ _______________________________________
/ The programmers number one excuse for \ / The programmers number one excuse for \
\ slacking off: cow-pie-ling / \ slacking off: cow-pie-ling /
@ -76,7 +87,8 @@ cowfiles in the original spirit of cowsay, except that all of these are
### cownterfeit ### cownterfeit
```plaintext ```shellsession
$ cowsay -f cownterfeit
________________________________________ ________________________________________
/ The love of moo-lah is the root of all \ / The love of moo-lah is the root of all \
\ evil / \ evil /
@ -100,7 +112,8 @@ cowfiles in the original spirit of cowsay, except that all of these are
### cowpooling ### cowpooling
```plaintext ```shellsession
$ cowsay -f cowpooling
_______________________________________ _______________________________________
/ Maybe Al Gore will forgive us for all \ / Maybe Al Gore will forgive us for all \
\ those methane emissions this way / \ those methane emissions this way /
@ -119,7 +132,8 @@ _______| /\_| /\_| /\_| /\_| |________
### cowstruction ### cowstruction
```plaintext ```shellsession
$ cowsay -f cowstruction
_________________________________ _________________________________
< My favorite part is bull-dozing > < My favorite part is bull-dozing >
--------------------------------- ---------------------------------
@ -147,10 +161,11 @@ _______| /\_| /\_| /\_| /\_| |________
### longhorn ### longhorn
```plaintext ```shellsession
$ cowsay -f longhorn
_______________________________________ _______________________________________
/ I've been sent to spread the message: \ / I've been sent to spread the message: \
\ God bless Texas! / \ God blessed Texas! /
--------------------------------------- ---------------------------------------
\ \
\ \ / \ \ /
@ -163,9 +178,12 @@ _______| /\_| /\_| /\_| /\_| |________
Texas Longhorn Steer Texas Longhorn Steer
``` ```
**BONUS**: aliased to `steersay`
### papal ### papal
```plaintext ```shellsession
$ cowsay -f papal
________________________ ________________________
< I forgive you, my calf > < I forgive you, my calf >
------------------------ ------------------------
@ -184,7 +202,8 @@ _______| /\_| /\_| /\_| /\_| |________
### pie ### pie
```plaintext ```shellsession
$ cowsay -f pie
___________________________________ ___________________________________
< Nobody makes them like Aunt Aggie > < Nobody makes them like Aunt Aggie >
----------------------------------- -----------------------------------
@ -198,7 +217,8 @@ _______| /\_| /\_| /\_| /\_| |________
### resting ### resting
```plaintext ```shellsession
$ cowthink -f resting
______________________________________ ______________________________________
( Insert deep thoughts and ruminations ) ( Insert deep thoughts and ruminations )
( here ) ( here )
@ -214,7 +234,8 @@ _______| /\_| /\_| /\_| /\_| |________
### super ### super
```plaintext ```shellsession
$ cowsay -f super
________________________________________ ________________________________________
/ If Impossible is as good as beef, then \ / If Impossible is as good as beef, then \
\ Bizarro is as good as me / \ Bizarro is as good as me /

@ -0,0 +1,18 @@
# Only add stuff if cowsay is installed
if [[ $(command -v cowsay) ]]; then
# Add the originally present cows to COWPATH
for COW in $(find $(whereis cowsay | awk '{print $3}') -name "*.cow" | xargs dirname | uniq); do
export COWPATH=$COW:$COWPATH
done
# Add the plugin's cows to COWPATH
export COWPATH=$(dirname $0):$COWPATH
# Create some fun aliases
alias bullsay="cowsay -f bull"
alias steersay="cowsay -f longhorn"
alias tuxsay="cowsay -f tux"
else
# Direct the user to install cowsay
alias cowsay="echo \"cowsay needs to be installed via apt, dnf, or the like\""
fi

@ -3,8 +3,13 @@
{ {
echo "# cowsay-cows" echo "# cowsay-cows"
echo "" echo ""
echo "cowfiles in the original spirit of cowsay, except that all of these are echo "cowfiles in the original spirit of cowsay, except that all of these are actually bovine"
actually bovine" echo ""
echo "Install using [Antigen](https://github.com/zsh-users/antigen)"
echo ""
echo "\`\`\`bash"
echo "antigen bundle millironx/cowsaycows"
echo "\`\`\`"
echo "" echo ""
echo "## Examples" echo "## Examples"
echo "" echo ""
@ -17,7 +22,8 @@ cowsay_message() {
{ {
echo "### $COW" echo "### $COW"
echo "" echo ""
echo "\`\`\`plaintext" echo "\`\`\`shellsession"
echo "\$ cowsay -f $COW"
cowsay -f "$COW" "$MESSAGE" cowsay -f "$COW" "$MESSAGE"
echo "\`\`\`" echo "\`\`\`"
echo "" echo ""
@ -31,7 +37,8 @@ cowthink_message() {
{ {
echo "### $COW" echo "### $COW"
echo "" echo ""
echo "\`\`\`plaintext" echo "\`\`\`shellsession"
echo "\$ cowthink -f $COW"
cowthink -f "$COW" "$MESSAGE" cowthink -f "$COW" "$MESSAGE"
echo "\`\`\`" echo "\`\`\`"
echo "" echo ""
@ -39,18 +46,22 @@ cowthink_message() {
} }
cowsay_message bell "The hills are alive with the sound of moo-sic" cowsay_message bell "The hills are alive with the sound of moo-sic"
cowsay_message birdstale "Grandpa said there was a moral there, but you had to cowsay_message birdstale "Grandpa said there was a moral there, but you had to figure it out for yourself"
figure it out for yourself"
cowsay_message bull "Actually, I'm a bull" cowsay_message bull "Actually, I'm a bull"
cowsay_message compucow "The programmers number one excuse for slacking off: {
cow-pie-ling" echo "**BONUS**: aliased to \`bullsay\`"
echo ""
} >> README.md
cowsay_message compucow "The programmers number one excuse for slacking off: cow-pie-ling"
cowsay_message cownterfeit "The love of moo-lah is the root of all evil" cowsay_message cownterfeit "The love of moo-lah is the root of all evil"
cowsay_message cowpooling "Maybe Al Gore will forgive us for all those methane cowsay_message cowpooling "Maybe Al Gore will forgive us for all those methane emissions this way"
emissions this way"
cowsay_message cowstruction "My favorite part is bull-dozing" cowsay_message cowstruction "My favorite part is bull-dozing"
cowsay_message longhorn "I've been sent to spread the message: God bless Texas!" cowsay_message longhorn "I've been sent to spread the message: God blessed Texas!"
{
echo "**BONUS**: aliased to \`steersay\`"
echo ""
} >> README.md
cowsay_message papal "I forgive you, my calf" cowsay_message papal "I forgive you, my calf"
cowsay_message pie "Nobody makes them like Aunt Aggie" cowsay_message pie "Nobody makes them like Aunt Aggie"
cowthink_message resting "Insert deep thoughts and ruminations here" cowthink_message resting "Insert deep thoughts and ruminations here"
cowsay_message super "If Impossible is as good as beef, then Bizarro is as good cowsay_message super "If Impossible is as good as beef, then Bizarro is as good as me"
as me"

Loading…
Cancel
Save