all repos — dotfiles-extra @ e7b4874516df8a3f5886c29fff1d1ae88e86607a

extra configs that may be extraneous and/or may be platform specific

.config/sway/scripts/zeit.sh

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
#!/bin/sh
tracking=$(zeit tracking --no-colors)

if [[ "$1" == "status" ]]
then
    text=$(echo -n $tracking | grep -q 'tracking' && echo "tracking" || echo "stopped")
    tooltip=$tracking'\r(zeit time tracker)'
    echo {\"text\":\"$text\"\,\"tooltip\":\"$tooltip\"\,\"class\":\"$text\"\,\"alt\":\"$text\"}
fi

if [[ "$1" == "click" ]]
then
  if echo "$tracking" | grep -q 'tracking'
  then
    zeit finish
  else
    swaymsg exec \$zeit_list
  fi
fi

if [[ "$1" == "track" ]]
then
    input=$(cat -)
    task=$(echo $input | pcregrep -io1 '└── (.+) \[.+')
    project=$(echo $input | pcregrep -io1 '.+\[(.+)\]')

    if [[ "$task" == "" ]] || [[ "$project" == "" ]]
    then
        notify-send "You did not select a task!"
        exit 1
    fi

    zeit track -p "$project" -t "$task"
    notify-send "Tracking $task in $project"
fi