mirror of
https://github.com/kforney/pentest-distro-builder.git
synced 2024-11-01 00:49:13 -06:00
Kaj Forney
f7da7f3982
Former-commit-id: d5258c85bc
Former-commit-id: aaf57e63c1976b3960fee717c68c3b09dc1a94ff
39 lines
1,000 B
Bash
Executable file
39 lines
1,000 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
CURRENT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
|
|
source "$CURRENT_DIR/scripts/variables.sh"
|
|
source "$CURRENT_DIR/scripts/helpers.sh"
|
|
|
|
set_save_bindings() {
|
|
local key_bindings=$(get_tmux_option "$save_option" "$default_save_key")
|
|
local key
|
|
for key in $key_bindings; do
|
|
tmux bind-key "$key" run-shell "$CURRENT_DIR/scripts/save.sh"
|
|
done
|
|
}
|
|
|
|
set_restore_bindings() {
|
|
local key_bindings=$(get_tmux_option "$restore_option" "$default_restore_key")
|
|
local key
|
|
for key in $key_bindings; do
|
|
tmux bind-key "$key" run-shell "$CURRENT_DIR/scripts/restore.sh"
|
|
done
|
|
}
|
|
|
|
set_default_strategies() {
|
|
tmux set-option -gq "${restore_process_strategy_option}irb" "default_strategy"
|
|
}
|
|
|
|
set_script_path_options() {
|
|
tmux set-option -gq "$save_path_option" "$CURRENT_DIR/scripts/save.sh"
|
|
tmux set-option -gq "$restore_path_option" "$CURRENT_DIR/scripts/restore.sh"
|
|
}
|
|
|
|
main() {
|
|
set_save_bindings
|
|
set_restore_bindings
|
|
set_default_strategies
|
|
set_script_path_options
|
|
}
|
|
main
|