inital commit

This commit is contained in:
2020-07-04 14:23:27 +02:00
commit 46d9d9eb4c
251 changed files with 15044 additions and 0 deletions

12
.local/bin/pomft Executable file
View File

@ -0,0 +1,12 @@
#!/bin/sh
SAVE_DIR=~/bks/pomodoros_freetime
case $1 in
add) start=$2
start_secs=$(date -d $start +'%s')
end=$3
end_secs=$(date -d $end +'%s')
duration="$(( ($end_secs - $start_secs)/60 ))"
echo "Pomodoro 1: $start to $end ($duration) $(date '+%Y%b%d')" | tee -ai $SAVE_DIR;;
*) muccadoro ${1:-25} 'f' | tee -ai "$SAVE_DIR";;
esac
pkill -RTMIN+3 dwmblocks