dotfiles

My personal dotfiles
git clone git://pcardensab.com/dotfiles
Log | Files | Refs | Submodules | README

leticia (591B)


      1 cd ~/dox/dev/leticia
      2 
      3 [ -d leticia/.git ] || git clone git@github.com:pablo-cardenas/leticia.git
      4 [ -d libleticia/.git ] || git clone git@github.com:pablo-cardenas/libleticia.git
      5 
      6 if ! tmux has-session -t leticia 2>/dev/null; then
      7     tmux new-session -s leticia -n main -d
      8     tmux send-keys -t leticia:0.0 'vim -S ${XDG_CONFIG_HOME}/vim/session/leticia.vim' C-m
      9 
     10     tmux new-window -d -n 'python-leticia' -t leticia:1 -c leticia
     11     tmux send-keys -t leticia:1.0 '. venv/bin/activate; clear' C-m
     12     tmux new-window -d -n 'libleticia' -t leticia:2 -c libleticia
     13 fi
     14 
     15 tmux attach -t leticia