aboutsummaryrefslogtreecommitdiff
path: root/status
blob: a9a05a7c6237a7f8615fe7356f2cdc58fdc4b795 (plain)
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#!/bin/bash
#
# Check the overall status of your work.
#

# Parameters
PROJECT="$1"
DELAY="$2"

# Run status
function status_run {
  if [ ! -z "$PROJECT" ]; then
    # Check the status of the given project
    cd $PROJECT &> /dev/null && git status
  elif git status &> /dev/null; then
    # Check the status of the current project
    mr status
  else
    # Ensure we are in the home folder
    cd

    # Check your reminders
    if [ -e "$HOME/.reminders" ]; then
      remind ~/.reminders | grep -v '^No reminders.$'
    fi

    # Update your mrconfig and check all registered repositories
    mrconfig-updater && mr -m status

    # Check your TODO lists
    todo

    # Check if you have mails to send
    postponed

    # Check if are dangling downloaded files
    if [ -e "$HOME/load" ] && [ ! -z "`ls -1 ~/load/`" ]; then
      echo "Dangling files at ~/load:"
      echo ""
      ls -lh ~/load/
    fi
  fi
}

# Dispatch
if [ "$PROJECT" == "--loop" ]; then
  PROJECT=""

  if [ -z "$DELAY" ]; then
    DELAY="30"
  fi

  while true; do
    status_run
    sleep $DELAY
    clear
  done
else
  status_run
fi