dotfiles

configuration files for shell, text editor, graphical environment, etc.
git clone git://src.adamsgaard.dk/dotfiles # fast
git clone https://src.adamsgaard.dk/dotfiles.git # slow
Log | Files | Refs | README | LICENSE Back to index

tmux-calendar.sh (188B)


      1 #!/bin/sh
      2 
      3 DIR=$HOME/.config/calcurse
      4 SESSION=calendar
      5 
      6 cd $DIR
      7 git pull
      8 
      9 tmux new-session -A -s "$SESSION" -n calcurse "calcurse -D $DIR"
     10 
     11 git commit -a -S -m "auto commit"
     12 git push
     13 cd -