enable user to set the path of tmux-resurrect's save.sh.

replace the hard-coded path by a more elegant one.
pull/91/head
kqwyf 2021-04-28 13:58:44 +08:00
parent 3845e73f94
commit 4c84c4062f
1 changed files with 2 additions and 1 deletions

View File

@ -10,6 +10,7 @@ template() {
shift
local options="$@"
local content=""
local resurrect_save_script_path="$(get_tmux_option "$resurrect_save_path_option" "$(realpath ${CURRENT_DIR}/../../../tmux-resurrect/scripts/save.sh)")"
read -r -d '' content <<-EOF
[Unit]
@ -21,7 +22,7 @@ template() {
Environment=DISPLAY=:0
ExecStart=/usr/bin/tmux ${systemd_tmux_server_start_cmd}
ExecStop=${HOME}/.tmux/plugins/tmux-resurrect/scripts/save.sh
ExecStop=${resurrect_save_script_path}
ExecStop=/usr/bin/tmux kill-server
KillMode=none