docs: beets, khal, nemo, wf-recorder
This commit is contained in:
parent
9fe1899825
commit
172ac7c5da
4 changed files with 80 additions and 0 deletions
54
.dotfiles/docs/beets.md
Normal file
54
.dotfiles/docs/beets.md
Normal 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
10
.dotfiles/docs/khal.md
Normal 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
7
.dotfiles/docs/nemo.md
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
# Nemo
|
||||||
|
|
||||||
|
## Samba support
|
||||||
|
|
||||||
|
```
|
||||||
|
# pacman -S nemo-share gvfs-smb
|
||||||
|
```
|
9
.dotfiles/docs/wf-recorder.md
Normal file
9
.dotfiles/docs/wf-recorder.md
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
# wf-recorder
|
||||||
|
|
||||||
|
## Record screen geometry
|
||||||
|
|
||||||
|
Requires [slurp](https://github.com/emersion/slurp)
|
||||||
|
|
||||||
|
```
|
||||||
|
wf-recorder -g "$(slurp)"
|
||||||
|
```
|
Loading…
Add table
Add a link
Reference in a new issue