mirror of
https://github.com/rwxrob/dot
synced 2024-11-14 18:12:56 +00:00
9 lines
227 B
Plaintext
9 lines
227 B
Plaintext
|
#!/usr/bin/env bash
|
||
|
what="$*"
|
||
|
if [ -z "${what}" ]; then
|
||
|
read -p "Text: " what
|
||
|
fi
|
||
|
cols=$(tput lines)
|
||
|
pomo stop
|
||
|
tmux split-window \; resize-pane -y $((cols-6)) \; send -t 1 "banner \"$what\"" Enter \; send -t 2 "fishies" Enter
|