2015-02-11 14:43:37 +00:00
|
|
|
SUPPORTED_VERSION="1.9"
|
|
|
|
|
|
|
|
# these tmux options contain paths to tmux resurrect save and restore scripts
|
|
|
|
resurrect_save_path_option="@resurrect-save-script-path"
|
|
|
|
resurrect_restore_path_option="@resurrect-restore-script-path"
|
|
|
|
|
2015-02-20 12:38:09 +00:00
|
|
|
auto_save_interval_option="@continuum-save-interval"
|
2015-02-11 14:43:37 +00:00
|
|
|
auto_save_interval_default="15"
|
|
|
|
|
|
|
|
# time when the tmux environment was last saved (unix timestamp)
|
2015-02-20 12:38:09 +00:00
|
|
|
last_auto_save_option="@continuum-save-last-timestamp"
|
2015-02-15 13:36:06 +00:00
|
|
|
|
2015-02-20 12:38:09 +00:00
|
|
|
auto_restore_option="@continuum-restore"
|
2015-02-15 13:36:06 +00:00
|
|
|
auto_restore_default="off"
|
|
|
|
|
|
|
|
auto_restore_halt_file="${HOME}/tmux_no_auto_restore"
|
2015-02-17 16:13:21 +00:00
|
|
|
|
|
|
|
# tmux auto start options
|
2015-02-20 12:38:09 +00:00
|
|
|
auto_start_option="@continuum-boot"
|
2015-02-17 16:13:21 +00:00
|
|
|
auto_start_default="off"
|
|
|
|
|
2015-02-18 14:14:11 +00:00
|
|
|
# comma separated list of additional options for tmux auto start
|
2015-02-20 12:38:09 +00:00
|
|
|
auto_start_config_option="@continuum-boot-options"
|
2015-02-18 14:14:11 +00:00
|
|
|
auto_start_config_default=""
|
|
|
|
|
2015-02-17 16:13:21 +00:00
|
|
|
osx_auto_start_file_name="Tmux.Start.plist"
|
|
|
|
osx_auto_start_file_path="${HOME}/Library/LaunchAgents/${osx_auto_start_file_name}"
|
2015-11-29 17:28:51 +00:00
|
|
|
|
|
|
|
status_interpolation_string="\#{continuum_status}"
|
|
|
|
status_script="#($CURRENT_DIR/scripts/continuum_status.sh)"
|
|
|
|
# below options set style/color for #{continuum_status} interpolation
|
|
|
|
status_on_style_wrap_option="@continuum-status-on-wrap-style" # example value: "#[fg=green]#{value}#[fg=white]"
|
|
|
|
status_off_style_wrap_option="@continuum-status-off-wrap-style" # example value: "#[fg=yellow,bold]#{value}#[fg=white,nobold]"
|
|
|
|
status_wrap_string="\#{value}"
|
2015-11-23 18:28:38 +00:00
|
|
|
|
|
|
|
systemd_service_name="tmux.service"
|
|
|
|
systemd_unit_file_path="$HOME/.config/systemd/user/${systemd_service_name}"
|
2015-11-26 08:33:06 +00:00
|
|
|
|
|
|
|
systemd_tmux_server_start_cmd_option="@systemd_tmux_server_start_cmd"
|
2015-11-28 18:48:51 +00:00
|
|
|
systemd_tmux_server_start_cmd_default="new-session"
|