diff options
author | Tom Ryder <tom@sanctum.geek.nz> | 2016-07-23 19:41:05 +1200 |
---|---|---|
committer | Tom Ryder <tom@sanctum.geek.nz> | 2016-07-23 19:41:05 +1200 |
commit | 9e77d83ddd06971f90c4507af8bbedead0cde4bf (patch) | |
tree | 91e93011cdda68aa09dbe82798ab9d3ed908f7e7 /bash/bash_profile.d | |
parent | Increase context for syntax highlighting (diff) | |
download | dotfiles-9e77d83ddd06971f90c4507af8bbedead0cde4bf.tar.gz dotfiles-9e77d83ddd06971f90c4507af8bbedead0cde4bf.zip |
Remove custom length limit on login fortunes
OpenBSD doesn't have -n
Diffstat (limited to 'bash/bash_profile.d')
-rw-r--r-- | bash/bash_profile.d/fortune.bash | 2 |
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' ) |