- commit
- b642f50
- parent
- 7502b55
- author
- chasinglightning
- date
- 2024-12-25 07:06:43 -0500 EST
add lyrics-in-terminal binary and conf
2 files changed,
+49,
-0
1@@ -0,0 +1,41 @@
2+# config structure
3+
4+[OPTIONS]
5+alignment=left
6+source=google
7+interval=1500
8+player=mpd
9+autoswitch=on
10+mpd_host=127.0.0.1
11+mpd_port=6600
12+mpd_pass=
13+#colors
14+#offset=1
15+statusbar=on
16+
17+[BINDINGS]
18+up=arrow_up
19+down=arrow_down
20+
21+step-up=arrow_left
22+step-down=arrow_right
23+step-size=5
24+
25+left=j
26+center=k
27+right=l
28+
29+autoswitchtoggle=a
30+cycle-source=c
31+
32+delete=d
33+edit=e
34+find=/
35+find-next=n
36+find-prev=p
37+
38+help=h
39+
40+quit=q
41+
42+
+8,
-0
1@@ -0,0 +1,8 @@
2+#!/usr/bin/python3
3+# -*- coding: utf-8 -*-
4+import re
5+import sys
6+from lyrics.lyrics_in_terminal import main
7+if __name__ == '__main__':
8+ sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
9+ sys.exit(main())