Test resurrect save feature

This commit is contained in:
Bruno Sutic
2015-02-22 20:49:59 +01:00
parent ac86e025ad
commit 30366a3cb4
5 changed files with 159 additions and 0 deletions

View File

@ -0,0 +1,12 @@
install_tmux_resurrect_helper() {
rm -rf ~/.tmux/plugins/tmux-resurrect/
cd "$CURRENT_DIR"
git clone --recursive ../ ~/.tmux/plugins/tmux-resurrect/ >/dev/null 2>&1
cd - >/dev/null
}
# we want "fixed" dimensions no matter the size of real display
set_screen_dimensions() {
stty cols 200
stty rows 50
}