2021-12-22 22:50:05 +01:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
# setting the locale, some users have issues with different locales, this forces the correct one
|
|
|
|
export LC_ALL=en_US.UTF-8
|
|
|
|
|
|
|
|
label=$1
|
|
|
|
|
|
|
|
current_dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
|
|
source $current_dir/utils.sh
|
|
|
|
|
|
|
|
get_synchronize_panes_status() {
|
|
|
|
current_synchronize_panes_status=$(get_tmux_window_option "synchronize-panes" "off")
|
|
|
|
echo $current_synchronize_panes_status
|
|
|
|
}
|
|
|
|
|
|
|
|
main()
|
|
|
|
{
|
|
|
|
# storing the refresh rate in the variable RATE, default is 5
|
2023-12-21 03:32:56 +01:00
|
|
|
RATE=$(get_tmux_option "@kanagawa-refresh-rate" 5)
|
2021-12-22 22:50:05 +01:00
|
|
|
synchronize_panes_label=$label
|
|
|
|
synchronize_panes_status=$(get_synchronize_panes_status)
|
|
|
|
echo "$synchronize_panes_label $synchronize_panes_status"
|
|
|
|
sleep $RATE
|
|
|
|
}
|
|
|
|
|
|
|
|
# run main driver
|
|
|
|
main
|