]> git.r.bdr.sh - rbdr/lyricli/blame - README.md
Update code, add source management config
[rbdr/lyricli] / README.md
CommitLineData
026a2f69 1# Lyricli (lrc)
bcd37f40 2
255dbbae
BB
3A command line tool to show the lyrics of your current song.
4
5## Usage
6
c53df649 7Lyricli can be invoked with the command `lrc`.
255dbbae
BB
8
9```
10$ lrc [-t]
11```
12
13When you run it without arguments, it will look in the available source
14to try to find a playing song and extract the lyrics. If you include the
15`-t` flag, it will show the song and artist names before the lyrics.
16
17```
18$ lrc [-t] <artist_name> <song_name>
19```
20
21When you run it with arguments, it will use them to search for the
22lyrics. This won't work if you manually disable the arguments source in
23your configuration file. If you include the `-t` flag, it will show the
24song and artist names before the lyrics.
25
26### Commands
27
c53df649 28In order to configure sources, lyricli provides a few commands:
255dbbae 29
c53df649 30* `lrc -l` or `lrc --list-sources` lists the available sources. Enabled
255dbbae 31 sourcess will have a `*`
c53df649
RBR
32* `lrc -e` or `lrc --enable-source <source>` enables a source
33* `lrc -d` or `lrc --disable-source <source>` disables a source without
34 resetting its configuration.
35* `lrc -r` or `lrc --reset-source <source>` resets the configuration
36 for a source and disables it.
37
38And you can print the help or the version:
39
255dbbae
BB
40* `lrc -v` or `lrc --version` prints the version
41* `lrc -h` or `lrc --help` display built-in help
026a2f69
BB
42
43## Building
44
c53df649 45The build has only been tested on OSX using Swift 5.8 Building defaults
255dbbae
BB
46to the debug configuration.
47
48```
49make
50```
51
52## Installing from source
53
54Builds lyricli in release configuration and copies the executable as
55`lrc` to `/usr/local/bin`
56
57```
58make install
59```
60
61### Installing to a custom directory
62
63This can be done by overriding the `install_path` variable
64
65```
66make install install_path=/opt/bin
67```
026a2f69 68
259284d0
BB
69## Linting and Generating Documentation
70
71We use [swiftlint][swiftlint] to lint, and `make lint` to run it.
72We use [jazzy][jazzy] and [SourceKitten][sourcekitten] to document, and
73`make document` to generate it.
74
026a2f69
BB
75## Running tests
76
255dbbae
BB
77No tests at the moment 😬... but the makefile is mapped to run the swift
78tests.
79
80```
81make test
82```
22172f7d 83
259284d0
BB
84[swiftlint]: https://github.com/realm/SwiftLint
85[jazzy]: https://github.com/realm/jazzy
86[sourcekitten]: https://github.com/jpsim/SourceKitten