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
5 lines
101 B
Bash
Executable file
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
|