mirror of
https://github.com/tmux/tmux.git
synced 2024-11-05 10:28:48 +00:00
11 lines
284 B
Bash
Executable File
11 lines
284 B
Bash
Executable File
#!/bin/sh
|
|
|
|
tmux attach
|
|
if [[ $? = 1 ]]; then
|
|
tmux new-session -d -nmain 'exec irssi'
|
|
tmux -smain set prefix '^H'
|
|
tmux -smain new-window -d -nherrie 'exec sudo herrie -c /home/mxey/etc/herrie/config'
|
|
tmux -smain new-window -d 'exec lynx'
|
|
exec tmux -smain attach
|
|
fi
|