diff options
Diffstat (limited to 'base')
-rwxr-xr-x | base/tmux/status | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/base/tmux/status b/base/tmux/status index c67c232..440c9f7 100755 --- a/base/tmux/status +++ b/base/tmux/status @@ -40,7 +40,7 @@ elif tmux showenv TMUX_SHOW_HINT &>/dev/null; then HINTF="$(dirname "$0")/hint" HINTS="${HINTF}s" if [[ ! -f "$HINTF" || "$(find "$HINTF" -mmin +2)" ]]; then - grep -v '^//' "$HINTS"* | shuf | head -n1 >"$HINTF" + grep -h -v '^//' "$HINTS"* | shuf | head -n1 >"$HINTF" fi TASKLINE="$(cat "$HINTF")" |