commit 98c1ee908d14e5f0862068d4ddc6fabc433f81e3 parent dc3532463255b25fde1d6844252dc049d50e396f Author: Pablo Cárdenas <pablo.cardenas@imca.edu.pe> Date: Mon, 27 May 2024 01:57:27 -0500 Added ~/.local/bin/leticia Diffstat:
| A | .local/bin/leticia | | | 14 | ++++++++++++++ |
1 file changed, 14 insertions(+), 0 deletions(-)
diff --git a/.local/bin/leticia b/.local/bin/leticia @@ -0,0 +1,14 @@ +cd ~/dox/dev/leticia + +[ -d leticia/.git ] || git clone git@github.com:pablo-cardenas/leticia.git +[ -d libleticia/.git ] || git clone git@github.com:pablo-cardenas/libleticia.git + +if ! tmux has-session -t leticia; then + tmux new-session -s leticia -n main -d + tmux send-keys -t leticia:0.0 'vim -S ~/.vim/session/leticia.vim' C-m + + tmux new-window -d -n 'python-leticia' -t leticia:1 -c leticia + tmux new-window -d -n 'libleticia' -t leticia:2 -c libleticia +fi + +tmux attach -t leticia