forked from ku1ik/git-dude
-
Notifications
You must be signed in to change notification settings - Fork 0
/
git-dude
executable file
·127 lines (108 loc) · 3.9 KB
/
git-dude
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
#!/bin/bash
#
# git-dude - Git commit notifier
# https://github.com/sickill/git-dude
#
# Copyright (C) 2011-2015 Marcin Kulik <http://ku1ik.com/>
#
# Distributed under the GNU General Public License, version 3.0.
set -e
interval=$(git config dude.interval || true)
interval=${interval:-60}
app_name=$(basename $0)
export LC_ALL=C # make sure git talks english
if [[ $(git config dude.notify-command) ]]; then
notify_cmd=$(git config dude.notify-command)
elif [ $(which notify-send 2>/dev/null) ]; then
notify_cmd='notify-send -i "$ICON_PATH" "$TITLE" "$DESCRIPTION"'
elif [ $(which terminal-notifier 2>/dev/null) ]; then
notify_cmd='terminal-notifier -title "$TITLE" -message "$DESCRIPTION"'
elif [ $(which growlnotify 2>/dev/null) ]; then
notify_cmd='growlnotify -n "$app_name" --image "$ICON_PATH" -m "$DESCRIPTION" "$TITLE"'
elif [ $(which kdialog 2>/dev/null) ]; then
notify_cmd='kdialog --icon $ICON_PATH --title "$TITLE" --passivepopup "$DESCRIPTION"'
elif [ $(which notify 2>/dev/null) ]; then
notify_cmd='notify --type information --icon "$ICON_PATH" --group "Git Commit" --title "$TITLE" "$DESCRIPTION"'
fi
function dudenotify() {
local ICON_PATH="$1"
local TITLE="$2"
local DESCRIPTION="$3"
if [ -n "$notify_cmd" ]; then
eval $notify_cmd
fi
date "+%x %X"
echo "$TITLE"
if [ -n "$DESCRIPTION" ]; then
echo "$DESCRIPTION"
fi
echo
}
if [[ $(git config dude.screensaver-command) ]]; then
screensaver_cmd=$(git config dude.screensaver-command)
elif [ $(which gnome-screensaver-command 2>/dev/null) ]; then
screensaver_cmd='LANG=C gnome-screensaver-command -q | grep -q "is active"'
fi
function screensaver() {
if [ -n "$screensaver_cmd" ]; then
eval $screensaver_cmd
if [[ $? != 0 ]]; then
return 1
fi
fi
# if we cannot be certain, default to saying screensaver is not
# active in order to run git-dude on every loop
return 0
}
[[ -d "$1" ]] && cd $1
while true; do
if ! screensaver; then
for dir_name in *; do
if [[ -d "$dir_name" && $(cd "$dir_name"; git rev-parse --git-dir 2>/dev/null) ]]; then
if [[ $(cd "$dir_name"; git config dude.ignore) == true ]]; then
continue
fi
repo_name=$(basename "$dir_name" .git)
cd "$dir_name"
remote=$(git config dude.remote || true)
changes=$(git fetch $remote 2>&1 | grep -F -- '->' | sed 's/^ [+*=!-] //')
icon_path=$(git config dude.icon || true)
icon_path=${icon_path:-`pwd`/icon.png}
icon_path=${icon_path// /\\ } # escape spaces before eval
eval icon_path=$icon_path # to expand ~
while read -r line; do
case $line in
*..*)
commit_range=$(echo "$line" | awk '{ print $1 }')
branch_name=$(echo "$line" | awk '{ print $2 }')
commit_messages=$(git log $commit_range --pretty=format:'%s (%an)')
notify_message="New commits in $repo_name/$branch_name"
if [ -n "$remote" ]; then
notify_message="${notify_message} at $remote"
fi
dudenotify $icon_path "$notify_message" "$commit_messages"
;;
*new\ branch*)
branch_name=$(echo "$line" | awk '{ print $3 }')
notify_message="New branch $repo_name/$branch_name"
if [ -n "$remote" ]; then
notify_message="${notify_message} at $remote"
fi
dudenotify $icon_path "$notify_message" ""
;;
*new\ tag*)
tag_name=$(echo "$line" | awk '{ print $3 }')
notify_message="New tag $repo_name/$tag_name"
if [ -n "$remote" ]; then
notify_message="${notify_message} at $remote"
fi
dudenotify $icon_path "$notify_message" ""
;;
esac
done <<< "$changes"
cd - &>/dev/null
fi
done
fi
sleep $interval
done