mirror of
https://github.com/kforney/pentest-distro-builder.git
synced 2024-11-01 08:59:11 -06:00
50 lines
1.2 KiB
Text
50 lines
1.2 KiB
Text
|
#!/usr/bin/env bash
|
||
|
|
||
|
CURRENT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||
|
|
||
|
source "$CURRENT_DIR/scripts/helpers.sh"
|
||
|
|
||
|
battery_interpolation=(
|
||
|
"\#{battery_percentage}"
|
||
|
"\#{battery_remain}"
|
||
|
"\#{battery_icon}"
|
||
|
"\#{battery_status_bg}"
|
||
|
"\#{battery_status_fg}"
|
||
|
"\#{battery_graph}"
|
||
|
)
|
||
|
battery_commands=(
|
||
|
"#($CURRENT_DIR/scripts/battery_percentage.sh)"
|
||
|
"#($CURRENT_DIR/scripts/battery_remain.sh)"
|
||
|
"#($CURRENT_DIR/scripts/battery_icon.sh)"
|
||
|
"#($CURRENT_DIR/scripts/battery_status_bg.sh)"
|
||
|
"#($CURRENT_DIR/scripts/battery_status_fg.sh)"
|
||
|
"#($CURRENT_DIR/scripts/battery_graph.sh)"
|
||
|
)
|
||
|
|
||
|
set_tmux_option() {
|
||
|
local option="$1"
|
||
|
local value="$2"
|
||
|
tmux set-option -gq "$option" "$value"
|
||
|
}
|
||
|
|
||
|
do_interpolation() {
|
||
|
local all_interpolated="$1"
|
||
|
for ((i=0; i<${#battery_commands[@]}; i++)); do
|
||
|
all_interpolated=${all_interpolated/${battery_interpolation[$i]}/${battery_commands[$i]}}
|
||
|
done
|
||
|
echo "$all_interpolated"
|
||
|
}
|
||
|
|
||
|
update_tmux_option() {
|
||
|
local option="$1"
|
||
|
local option_value="$(get_tmux_option "$option")"
|
||
|
local new_option_value="$(do_interpolation "$option_value")"
|
||
|
set_tmux_option "$option" "$new_option_value"
|
||
|
}
|
||
|
|
||
|
main() {
|
||
|
update_tmux_option "status-right"
|
||
|
update_tmux_option "status-left"
|
||
|
}
|
||
|
main
|