aboutsummaryrefslogtreecommitdiff
path: root/bash
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2016-07-23 19:41:05 +1200
committerTom Ryder <tom@sanctum.geek.nz>2016-07-23 19:41:05 +1200
commit9e77d83ddd06971f90c4507af8bbedead0cde4bf (patch)
tree91e93011cdda68aa09dbe82798ab9d3ed908f7e7 /bash
parentIncrease context for syntax highlighting (diff)
downloaddotfiles-9e77d83ddd06971f90c4507af8bbedead0cde4bf.tar.gz
dotfiles-9e77d83ddd06971f90c4507af8bbedead0cde4bf.zip
Remove custom length limit on login fortunes
OpenBSD doesn't have -n
Diffstat (limited to '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 e4da485d..cc16ff05 100644
--- a/bash/bash_profile.d/fortune.bash
+++ b/bash/bash_profile.d/fortune.bash
@@ -14,6 +14,6 @@ fi
FORTUNE_PATH=${FORTUNE_PATH:-$HOME/.local/share/games/fortunes}
fi
printf '\n'
- fortune -sn "${FORTUNE_MAXSIZE:-768}" "$FORTUNE_PATH"
+ fortune -s "$FORTUNE_PATH"
printf '\n'
)