diff options
Diffstat (limited to 'profmux.sh')
-rwxr-xr-x | profmux.sh | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/profmux.sh b/profmux.sh new file mode 100755 index 0000000..6357c26 --- /dev/null +++ b/profmux.sh @@ -0,0 +1,9 @@ +#!/bin/sh +session="xmpp-chat" + +tmux new-session -d -s $session + +tmux new-window -t $session:0 -n 'chat' +tmux send-keys -t $session:0 profanity 'Enter' + +tmux attach-session -t $session |