dotfiles

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

commit 95c4b4c45d919788f058309769a5f900fd6af374
parent df62cf0d87657aa97c374fdd13ee65ebef1bc640
Author: Anders Damsgaard <anders@adamsgaard.dk>
Date:   Fri,  4 Oct 2019 15:10:21 +0200

Add calcurse wrapper with sync

Diffstat:
A.local/bin/tmux-calendar.sh | 13+++++++++++++
1 file changed, 13 insertions(+), 0 deletions(-)

diff --git a/.local/bin/tmux-calendar.sh b/.local/bin/tmux-calendar.sh @@ -0,0 +1,13 @@ +#!/bin/sh + +DIR=$HOME/.config/calcurse +SESSION=calendar + +cd $DIR +git pull + +tmux new-session -A -s "$SESSION" -n calcurse "calcurse -D $DIR" + +git commit -a -S -m "auto commit" +git push +cd -