From 3334638a2c87fb81f4d2e3956f1a9f5b5b08ae5d Mon Sep 17 00:00:00 2001 From: 2Shirt <2xShirt@gmail.com> Date: Sat, 27 May 2023 19:48:18 -0700 Subject: [PATCH] Suppress warnings when using tail in tmux --- scripts/wk/ui/tmux.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/wk/ui/tmux.py b/scripts/wk/ui/tmux.py index e653720d..22438c3e 100644 --- a/scripts/wk/ui/tmux.py +++ b/scripts/wk/ui/tmux.py @@ -242,7 +242,7 @@ def prep_action( 'cat', ]) elif watch_cmd == 'tail': - action_cmd.extend(['tail', '-f']) + action_cmd.extend(['tail', '-q', '-f']) action_cmd.append(watch_file) else: LOG.error('No action specified')