├── .gitignore ├── InstantLyrics.py ├── README.md ├── _config.yml ├── icons ├── instant-lyrics-24.png ├── instant-lyrics-256.png ├── instant-lyrics-32.png ├── instant-lyrics-512.png └── instant-lyrics.svg └── src ├── __init__.py ├── appIndicator.py ├── lyrics.py ├── settings.py ├── utils.py └── windows.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhrigu123/Instant-Lyrics/HEAD/.gitignore -------------------------------------------------------------------------------- /InstantLyrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhrigu123/Instant-Lyrics/HEAD/InstantLyrics.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhrigu123/Instant-Lyrics/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhrigu123/Instant-Lyrics/HEAD/_config.yml -------------------------------------------------------------------------------- /icons/instant-lyrics-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhrigu123/Instant-Lyrics/HEAD/icons/instant-lyrics-24.png -------------------------------------------------------------------------------- /icons/instant-lyrics-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhrigu123/Instant-Lyrics/HEAD/icons/instant-lyrics-256.png -------------------------------------------------------------------------------- /icons/instant-lyrics-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhrigu123/Instant-Lyrics/HEAD/icons/instant-lyrics-32.png -------------------------------------------------------------------------------- /icons/instant-lyrics-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhrigu123/Instant-Lyrics/HEAD/icons/instant-lyrics-512.png -------------------------------------------------------------------------------- /icons/instant-lyrics.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhrigu123/Instant-Lyrics/HEAD/icons/instant-lyrics.svg -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/appIndicator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhrigu123/Instant-Lyrics/HEAD/src/appIndicator.py -------------------------------------------------------------------------------- /src/lyrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhrigu123/Instant-Lyrics/HEAD/src/lyrics.py -------------------------------------------------------------------------------- /src/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhrigu123/Instant-Lyrics/HEAD/src/settings.py -------------------------------------------------------------------------------- /src/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhrigu123/Instant-Lyrics/HEAD/src/utils.py -------------------------------------------------------------------------------- /src/windows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhrigu123/Instant-Lyrics/HEAD/src/windows.py --------------------------------------------------------------------------------