├── .gitignore ├── DEVELOP.md ├── LICENSE ├── Menu Bar Ticker.xcodeproj └── project.pbxproj ├── MenubarTicker ├── AppDelegate.h ├── AppDelegate.m ├── Base.lproj │ └── MainMenu.xib ├── Menu Bar Ticker-Info.plist ├── Music.h ├── Spotify.h ├── en.lproj │ ├── Credits.rtf │ └── InfoPlist.strings └── main.m ├── README.md └── screenshots ├── dark-active.png ├── dark-idle.png ├── light-active.png └── light-idle.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serban/menubar-ticker/HEAD/.gitignore -------------------------------------------------------------------------------- /DEVELOP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serban/menubar-ticker/HEAD/DEVELOP.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serban/menubar-ticker/HEAD/LICENSE -------------------------------------------------------------------------------- /Menu Bar Ticker.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serban/menubar-ticker/HEAD/Menu Bar Ticker.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /MenubarTicker/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serban/menubar-ticker/HEAD/MenubarTicker/AppDelegate.h -------------------------------------------------------------------------------- /MenubarTicker/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serban/menubar-ticker/HEAD/MenubarTicker/AppDelegate.m -------------------------------------------------------------------------------- /MenubarTicker/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serban/menubar-ticker/HEAD/MenubarTicker/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /MenubarTicker/Menu Bar Ticker-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serban/menubar-ticker/HEAD/MenubarTicker/Menu Bar Ticker-Info.plist -------------------------------------------------------------------------------- /MenubarTicker/Music.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serban/menubar-ticker/HEAD/MenubarTicker/Music.h -------------------------------------------------------------------------------- /MenubarTicker/Spotify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serban/menubar-ticker/HEAD/MenubarTicker/Spotify.h -------------------------------------------------------------------------------- /MenubarTicker/en.lproj/Credits.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serban/menubar-ticker/HEAD/MenubarTicker/en.lproj/Credits.rtf -------------------------------------------------------------------------------- /MenubarTicker/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /MenubarTicker/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serban/menubar-ticker/HEAD/MenubarTicker/main.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serban/menubar-ticker/HEAD/README.md -------------------------------------------------------------------------------- /screenshots/dark-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serban/menubar-ticker/HEAD/screenshots/dark-active.png -------------------------------------------------------------------------------- /screenshots/dark-idle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serban/menubar-ticker/HEAD/screenshots/dark-idle.png -------------------------------------------------------------------------------- /screenshots/light-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serban/menubar-ticker/HEAD/screenshots/light-active.png -------------------------------------------------------------------------------- /screenshots/light-idle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serban/menubar-ticker/HEAD/screenshots/light-idle.png --------------------------------------------------------------------------------