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" +}