├── .github └── workflows │ └── build.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── include ├── Enums.h └── MRContent.h ├── screenshots └── examples.png └── src └── nowplaying.mm /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirtan-shah/nowplaying-cli/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | nowplaying-cli 2 | .DS_Store -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirtan-shah/nowplaying-cli/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirtan-shah/nowplaying-cli/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirtan-shah/nowplaying-cli/HEAD/README.md -------------------------------------------------------------------------------- /include/Enums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirtan-shah/nowplaying-cli/HEAD/include/Enums.h -------------------------------------------------------------------------------- /include/MRContent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirtan-shah/nowplaying-cli/HEAD/include/MRContent.h -------------------------------------------------------------------------------- /screenshots/examples.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirtan-shah/nowplaying-cli/HEAD/screenshots/examples.png -------------------------------------------------------------------------------- /src/nowplaying.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirtan-shah/nowplaying-cli/HEAD/src/nowplaying.mm --------------------------------------------------------------------------------