]> Sergey Matveev's repositories - dotfiles.git/blob - bin/bin/tmux-menu-calc.sh
tmux menu/popup calculator
[dotfiles.git] / bin / bin / tmux-menu-calc.sh
1 #!/bin/sh
2
3 tmux has-session -t calc || {
4     tmux new-session -d -s calc rlwrap -S "> " dc
5     tmux set-option -t calc status off
6 }
7 tmux attach-session -t calc