blob: 3b9faed98110039c8a747bd9a5d205828d55bb89 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
# -*- shell-script -*-
#DESCRIPTION: Utilise KMS support in ponysay when in a TTY
if test"$TERM" = "linux"; then
ponysay () {
PONYSAY_KMS_PALETTE="$PALETTE" /usr/bin/ponysay "$@"
printf "$PALETTE"
}
fi
|