├── .gitignore ├── LICENSE ├── README.md ├── data ├── data.json └── io_helper.py ├── now_playing.py └── polybar.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0nse/now_playing/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0nse/now_playing/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0nse/now_playing/HEAD/README.md -------------------------------------------------------------------------------- /data/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0nse/now_playing/HEAD/data/data.json -------------------------------------------------------------------------------- /data/io_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0nse/now_playing/HEAD/data/io_helper.py -------------------------------------------------------------------------------- /now_playing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0nse/now_playing/HEAD/now_playing.py -------------------------------------------------------------------------------- /polybar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0nse/now_playing/HEAD/polybar.png --------------------------------------------------------------------------------