aboutsummaryrefslogtreecommitdiff
path: root/bash/bash_profile.d/fortune.bash
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2015-06-10 10:46:54 +1200
committerTom Ryder <tom@sanctum.geek.nz>2015-06-10 10:46:54 +1200
commit7ec37c45811020c06bc91f5a95361f6f0fce1f66 (patch)
tree9111215b7ae5e101182f2906130e0a20cf0b8373 /bash/bash_profile.d/fortune.bash
parentInstate .bash_profile.d (diff)
downloaddotfiles-7ec37c45811020c06bc91f5a95361f6f0fce1f66.tar.gz
dotfiles-7ec37c45811020c06bc91f5a95361f6f0fce1f66.zip
Limit to slightly shorter fortunes
Diffstat (limited to 'bash/bash_profile.d/fortune.bash')
-rw-r--r--bash/bash_profile.d/fortune.bash2
1 files changed, 1 insertions, 1 deletions
diff --git a/bash/bash_profile.d/fortune.bash b/bash/bash_profile.d/fortune.bash
index 9caa3d3c..deb2e79f 100644
--- a/bash/bash_profile.d/fortune.bash
+++ b/bash/bash_profile.d/fortune.bash
@@ -3,6 +3,6 @@ if [[ $- == *i* ]] && hash fortune 2>/dev/null ; then (
if [[ -d "$HOME"/.local/share/games/fortunes ]] ; then
FORTUNE_PATH=${FORTUNE_PATH:-$HOME/.local/share/games/fortunes}
fi
- fortune -sn "${FORTUNE_MAXSIZE:-1024}" "$FORTUNE_PATH"
+ fortune -sn "${FORTUNE_MAXSIZE:-768}" "$FORTUNE_PATH"
) ; fi