diff options
Diffstat (limited to '.config/zsh')
| -rw-r--r-- | .config/zsh/.zshrc | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/.config/zsh/.zshrc b/.config/zsh/.zshrc index 65c10c8..2fee5d5 100644 --- a/.config/zsh/.zshrc +++ b/.config/zsh/.zshrc @@ -394,10 +394,17 @@ alias cp='cp -i' alias ln='ln -i' alias rm='rm -i' -# suspend(sleep)/hibernate and lock screen if using systemctl +# Suspend(sleep)/hibernate and lock screen if using systemctl alias suspend='systemctl suspend && betterlockscreen --lock dimblur' alias hibernate='systemctl hibernate' +# Tmux layout +openSession () { + tmux split-window -h -t + tmux split-window -v -t + tmux resize-pane -U 5 +} + ########## Source Plugins, should be last ########## # load zsh-vi-mode |
