From f04d7b04c12432fe6be9940d41d37efc4f1eb418 Mon Sep 17 00:00:00 2001 From: Morgan Wattiez Date: Fri, 1 Mar 2019 09:28:18 +0100 Subject: [PATCH] aliases for jira and calendar --- dot_zsh_aliases | 3 ++- dot_zsh_functions | 3 +++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/dot_zsh_aliases b/dot_zsh_aliases index f797fdd..c970193 100644 --- a/dot_zsh_aliases +++ b/dot_zsh_aliases @@ -11,7 +11,8 @@ alias npmlist='npm list -g --depth 0' alias toollist="jira jql \"project = 'Internal Tooling'\"" alias backlogs="jira jql \"status = New AND project IN (CICD, TOOL) AND Created > -2w ORDER BY Priority DESC\"" alias backlog=toollist - +alias jirasearch='issues' +alias agenda='calendar' # Show/hide hidden files in Finder alias show="defaults write com.apple.finder AppleShowAllFiles -bool true && killall Finder" diff --git a/dot_zsh_functions b/dot_zsh_functions index 0c62e79..fd7efee 100644 --- a/dot_zsh_functions +++ b/dot_zsh_functions @@ -22,3 +22,6 @@ function tooling() { function issues() { jira jql "status = Open AND text ~ \"$*\" ORDER BY Created DESC" } +function calendar() { + open -na "Google Chrome" --args "https://calendar.google.com/calendar/r?tab=mc" +}