Skip to content

Commit

Permalink
Add aliases for timewarrior
Browse files Browse the repository at this point in the history
Added shortcut aliases for timewarrior (1):

* `tw` = `tw summary` - Shortcut to show the summary.
* `tws` = `timew :ids` - Shortcut to show IDs by default
  (depends on `alias.tw`).

References:

  (1) https://taskwarrior.org/docs/timewarrior

Closes GH-127
  • Loading branch information
arcticicestudio committed Sep 9, 2018
1 parent 12dc960 commit 0cdb1dd
Showing 1 changed file with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions snowblocks/bash/core/aliases
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,25 @@ alias sbrd='mvn spring-boot:run -Drun.jvmArguments="-agentlib:jdwp=transport=dt_
# +--- pacman ---+
alias pacman='pacman --config ~/.pacman.conf'

# +--- taskwarrior ---+
alias t='task'

# +--- timewarrior ---+
# Shortcut to show IDs by default.
#
# @see https://taskwarrior.org/docs/timewarrior/hints.html
alias tw='timew :ids'

# Shortcut to show a summary.
#
# @depends alias.tw
# @see https://taskwarrior.org/docs/timewarrior/hints.html
alias tws='tw summary'

# +--- trash-cli ---+
# Shortcut to move a file into the trash.
alias trm='trash'

# +--- taskwarrior ---+
alias t='task'

# +--- wget ---+
# Disable log file
alias wget='wget --hsts-file='
Expand Down

0 comments on commit 0cdb1dd

Please sign in to comment.