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

13
.local/bin/pom Executable file
View File

@ -0,0 +1,13 @@
#!/bin/sh
SAVE_DIR=~/eth/pomodoros
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;;
*) xdotool key super+shift+9
muccadoro $1 | tee -ai "$SAVE_DIR";;
esac
pkill -RTMIN+3 dwmblocks