mirror of
https://github.com/erkin/ponysay.git
synced 2025-02-27 14:14:31 +01:00
Fix issue #41
This commit is contained in:
parent
c374d57fd3
commit
4e1655bc0b
1 changed files with 8 additions and 4 deletions
12
ponysay
12
ponysay
|
@ -1,19 +1,23 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
version=1.1
|
||||
SYSTEMPONIES="/usr/share/ponysay/ponies"
|
||||
HOMEPONIES="${HOME}/.local/share/ponysay/ponies"
|
||||
SCRIPTDIR="$( cd -P "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" # Get bash script directory
|
||||
pony="*"
|
||||
wrap=""
|
||||
|
||||
SYSTEMPONIES="$(dirname $SCRIPTDIR)/share/ponysay"
|
||||
HOMEPONIES="${HOME}/.local/share/ponysay"
|
||||
|
||||
kmscmd=""
|
||||
[[ "$TERM" = "linux" ]] && kmscmd=$(for c in $(echo $PATH":" | sed -e 's/:/\/ponysay2kmsponysay /g'); do if [[ -f $c ]]; then echo $c; break; fi done)
|
||||
[[ ! "$kmscmd" = "" ]] && TERM="-linux-"
|
||||
|
||||
if [ "$TERM" = "linux" ]; then
|
||||
SYSTEMPONIES="/usr/share/ponysay/ttyponies"
|
||||
HOMEPONIES="${HOME}/.local/share/ponysay/ttyponies"
|
||||
SYSTEMPONIES="$SYSTEMPONIES/ttyponies"
|
||||
HOMEPONIES="$HOMEPONIES/ttyponies"
|
||||
else
|
||||
SYSTEMPONIES="$SYSTEMPONIES/ponies"
|
||||
HOMEPONIES="$HOMEPONIES/ponies"
|
||||
fi
|
||||
|
||||
if [[ "$PONYSAY_COWSAY" = "" ]]; then
|
||||
|
|
Loading…
Reference in a new issue