From fd2504b089ecd698aa1e2a1c062beb4aeb60c298 Mon Sep 17 00:00:00 2001 From: winsphinx Date: Sun, 1 Mar 2026 13:05:29 +0800 Subject: [PATCH] Remove refresh rate variable from attached_clients.sh Removed the refresh rate variable from the main function. --- scripts/attached_clients.sh | 3 --- 1 file changed, 3 deletions(-) diff --git a/scripts/attached_clients.sh b/scripts/attached_clients.sh index ca7056d8..2b6ddbf7 100755 --- a/scripts/attached_clients.sh +++ b/scripts/attached_clients.sh @@ -16,8 +16,6 @@ count_clients() { } main() { - # storing the refresh rate in the variable RATE, default is 5 - RATE=$(get_tmux_option "@dracula-refresh-rate" 5) clients_count=$(count_clients) clients_minimum=$(get_tmux_option "@dracula-clients-minimum" 1) if (( $clients_count >= $clients_minimum )); then @@ -28,7 +26,6 @@ main() { fi echo "$clients_count $clients_label" fi - sleep $RATE } # run main driver