This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# MIDI note/CC name map | |
80 Bell R Hit | |
79 Bell L Hit | |
78 Stack Hit | |
77 - | |
76 Splash R Choke | |
75 Splash R Hit | |
74 Splash L Choke | |
73 Splash L Hit | |
72 - |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /bin/bash | |
echo "Starting Daily Standup Email" | |
DAYS=1 | |
if [ "$1" != "" ]; then | |
DAYS=$1 | |
fi | |
echo '$1 = ' $1 | |
cd YOUR/GIT/ROOT | |
/home/linuxbrew/.linuxbrew/bin/git-standup -d DAYS -s | /usr/bin/mail -s 'Daily Standup' -a FROM:YOUR NAME\<[email protected]> [email protected] | |
echo "Done" |