docs: beets, khal, nemo, wf-recorder

This commit is contained in:
Felipe M 2021-01-31 23:05:22 +01:00
parent 9fe1899825
commit 172ac7c5da
Signed by: fmartingr
GPG key ID: 716BC147715E716F
4 changed files with 80 additions and 0 deletions

10
.dotfiles/docs/khal.md Normal file
View file

@ -0,0 +1,10 @@
# Khal
## Get only next event
```
# -df "": Show empty day headers
# grep -v "^ ": remove all-day events
# head -n 1: Get only the first item
khal list now -df "" | grep -v "^ " | head -n 1
```