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

54
.dotfiles/docs/beets.md Normal file
View File

@ -0,0 +1,54 @@
# Beets
## Setup configuration file:
``` yaml
# ~/.config/beets/config.yaml
directory: ~/music
library: ~/music/library.db
import:
copy: no # Do not copy files into directory
move: no # Do not delete original files
write: yes # Write tags to file
plugins: duplicates fetchart embedart
```
## Import music
Using `--incremental` to avoid scanning the already imported albums.
```
beet import ~/music --incremental
```
To re-scan the music library:
```
beet update
```
## Download art files into a `cover.jpg` file
Requires plugin: `fetchart`.
```
beet fetchart
```
## Embed art into files
Requires plugin: `embedart` & `fetchart`.
```
beet embedart
```
## Scan for duplicates
Requires plugin `duplicates`.
Use `-p` to show the path to the duplicates instead of the name.
```
beet duplicates -p
```

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
```

7
.dotfiles/docs/nemo.md Normal file
View File

@ -0,0 +1,7 @@
# Nemo
## Samba support
```
# pacman -S nemo-share gvfs-smb
```

View File

@ -0,0 +1,9 @@
# wf-recorder
## Record screen geometry
Requires [slurp](https://github.com/emersion/slurp)
```
wf-recorder -g "$(slurp)"
```