]> git.r.bdr.sh - rbdr/r.bdr.sh/commitdiff
Add lyricli page
authorRuben Beltran del Rio <redacted>
Mon, 10 Apr 2023 14:14:12 +0000 (16:14 +0200)
committerRuben Beltran del Rio <redacted>
Mon, 10 Apr 2023 14:14:12 +0000 (16:14 +0200)
jekyll/lyricli.html [new file with mode: 0644]

diff --git a/jekyll/lyricli.html b/jekyll/lyricli.html
new file mode 100644 (file)
index 0000000..bed4c93
--- /dev/null
@@ -0,0 +1,51 @@
+---
+layout: default
+title: /lyricli.html
+description: "Lyricli (lrc), a command line lyrics finder"
+---
+<main>
+  <h2>lyricli (lrc)</h2>
+  <p>Command line tool that shows lyrics for your currently playing song in the command line</p>
+  <p>
+    → <a href="https://git.sr.ht/~rbdr/lyricli">view source</a>.
+  </p>
+  <p>You may need to allow the plugin to run in "Privacy &amp; Security" in your system settings.</p>
+  <h2>Download</h2>
+  <ul>
+    <li>
+      <p>
+        <a href="/files/lyricli/2.0.0/universal/lrc">lrc (universal)</a>:
+          For both intel and apple silicon macs (larger binary)
+      </p>
+    </li>
+    <li>
+      <p>
+        <a href="/files/lyricli/2.0.0/arm64/lrc">lrc (arm64)</a>:
+          Only for apple silicon macs
+      </p>
+    </li>
+    <li>
+      <p>
+        <a href="/files/lyricli/2.0.0/x86_64/lrc">lrc (x86_64)</a>:
+          Only for intel macs
+      </p>
+    </li>
+  </ul>
+  <h2>Usage</h2>
+  <p>Running without arguments will try to detect your current song in apple music or spotify</p>
+  <p>You can run it with artist name and song name to fetch it manually</p>
+  <pre>lrc artist_name song_name</pre>
+  <p>You can view help with the h / help flag</p>
+  <pre>lrc -h</pre>
+  <pre>lrc --help</pre>
+  <h2>Managing Sources</h2>
+  <p>By default it comes with spotify and apple music sources enabled, you can disable sources using:</p>
+  <pre>lrc -d (source_name)</pre>
+  <pre>lrc --disable-source (source_name)</pre>
+  <p>You can enable the source again using</p>
+  <pre>lrc -e (source_name)</pre>
+  <pre>lrc --enable-source (source_name)</pre>
+  <p>You can list all the sources with:</p>
+  <pre>lrc -l</pre>
+  <pre>lrc --list-sources</pre>
+</main>