Skip to content

Commit 28a7b2d

Browse files
committed
major changes
- A lot of refactoring - Add spotify player interface, now you can change the song, play or pause the song - Automatic refresh
1 parent 0b3991a commit 28a7b2d

File tree

3 files changed

+220
-184
lines changed

3 files changed

+220
-184
lines changed

README.md

Lines changed: 16 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -34,16 +34,22 @@ spotify-lyrics
3434

3535
| Action | Keybinding |
3636
|:-------------:|:------------:|
37-
| scrool-up | <kbd>k</kbd> |
38-
| scrool-down | <kbd>j</kbd> |
39-
| edit-lyrics | <kbd>e</kbd> |
40-
| refresh | <kbd>r</kbd> |
41-
| delete-cached | <kbd>d</kbd> |
42-
| quit-program | <kbd>q</kbd> |
43-
44-
- edit-lyrics: Open lyrics in `$EDITOR`
45-
- refresh: Re-prints lyrics and song info.
46-
- delete-cached: Deletes cached lyrics and gets lyrics from the internet.
37+
| Scrool Up | <kbd>k</kbd> |
38+
| Scrool Down | <kbd>j</kbd> |
39+
| Edit Lyrics | <kbd>e</kbd> |
40+
| Refresh | <kbd>r</kbd> |
41+
| Toggle | <kbd>t</kbd> |
42+
| Next | <kbd>n</kbd> |
43+
| Prev | <kbd>p</kbd> |
44+
| Update Lyrics | <kbd>d</kbd> |
45+
| Quit Program | <kbd>q</kbd> |
46+
47+
- Edit Lyrics: Open lyrics in `$EDITOR`.
48+
- Refresh: Refresh lyrics and song metadata.
49+
- Toggle: Play or Pause currently playing song.
50+
- Next: Play next song.
51+
- Prev: Play previous song.
52+
- Update Lyrics: Deletes cached lyrics and fetches lyrics from the internet.
4753

4854
### Example Use Case (i3wm)
4955
```i3

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
long_description = f.read()
99

1010
setup(name='yet-another-spotify-lyrics',
11-
version='1.0.3',
11+
version='2.0.0',
1212
description='Command Line Spotify Lyrics with Album Cover',
1313
author='Göktuğ Karakaşlı',
1414
author_email='[email protected]',
@@ -17,7 +17,7 @@
1717
long_description_content_type='text/markdown',
1818
url='https://github.com/goktug97/yet-another-spotify-lyrics',
1919
download_url=(
20-
'https://github.com/goktug97/yet-another-spotify-lyrics/archive/v1.0.3.tar.gz'),
20+
'https://github.com/goktug97/yet-another-spotify-lyrics/archive/v2.0.0.tar.gz'),
2121
py_modules=[os.path.splitext(os.path.basename(path))[0]
2222
for path in ['spotify_lyrics']],
2323
entry_points={

0 commit comments

Comments
 (0)