.dotfiles/home/.config/tmux/tmux-create-session.sh
Martin Larsson d094fce66d Add tmux config and replace zellij with tmux in zshrc.
Zhrc also has some light refactoring, and has added a zsh local file
which gets sourced if it exists, useful for adding local environment
variables
2024-06-29 14:01:03 +02:00

5 lines
101 B
Bash
Executable file

#!/bin/zsh
session_name=$1
tmux new-session -d -s $session_name
tmux switch-client -t $session_name