├── .gitattributes ├── .gitignore ├── .vscode └── launch.json ├── LICENSE ├── README.md ├── dub.json ├── screenshots └── tui.gif ├── source ├── VERSION ├── app.d └── xp │ ├── library.d │ ├── mpris.d │ ├── package.d │ ├── platforms │ ├── localfile.d │ ├── package.d │ ├── soundcloud.d │ ├── spotify.d │ └── youtube.d │ ├── player.d │ └── ui │ └── tui │ ├── drawing.d │ ├── package.d │ ├── scrollist.d │ └── textentry.d └── tag ├── .gitignore ├── dub.json └── source └── tag.d /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryhon0/xp/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryhon0/xp/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryhon0/xp/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryhon0/xp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryhon0/xp/HEAD/README.md -------------------------------------------------------------------------------- /dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryhon0/xp/HEAD/dub.json -------------------------------------------------------------------------------- /screenshots/tui.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryhon0/xp/HEAD/screenshots/tui.gif -------------------------------------------------------------------------------- /source/VERSION: -------------------------------------------------------------------------------- 1 | v0.0.1 -------------------------------------------------------------------------------- /source/app.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryhon0/xp/HEAD/source/app.d -------------------------------------------------------------------------------- /source/xp/library.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryhon0/xp/HEAD/source/xp/library.d -------------------------------------------------------------------------------- /source/xp/mpris.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryhon0/xp/HEAD/source/xp/mpris.d -------------------------------------------------------------------------------- /source/xp/package.d: -------------------------------------------------------------------------------- 1 | module xp; 2 | 3 | const string xpVersion = import("VERSION"); -------------------------------------------------------------------------------- /source/xp/platforms/localfile.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryhon0/xp/HEAD/source/xp/platforms/localfile.d -------------------------------------------------------------------------------- /source/xp/platforms/package.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryhon0/xp/HEAD/source/xp/platforms/package.d -------------------------------------------------------------------------------- /source/xp/platforms/soundcloud.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryhon0/xp/HEAD/source/xp/platforms/soundcloud.d -------------------------------------------------------------------------------- /source/xp/platforms/spotify.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryhon0/xp/HEAD/source/xp/platforms/spotify.d -------------------------------------------------------------------------------- /source/xp/platforms/youtube.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryhon0/xp/HEAD/source/xp/platforms/youtube.d -------------------------------------------------------------------------------- /source/xp/player.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryhon0/xp/HEAD/source/xp/player.d -------------------------------------------------------------------------------- /source/xp/ui/tui/drawing.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryhon0/xp/HEAD/source/xp/ui/tui/drawing.d -------------------------------------------------------------------------------- /source/xp/ui/tui/package.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryhon0/xp/HEAD/source/xp/ui/tui/package.d -------------------------------------------------------------------------------- /source/xp/ui/tui/scrollist.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryhon0/xp/HEAD/source/xp/ui/tui/scrollist.d -------------------------------------------------------------------------------- /source/xp/ui/tui/textentry.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryhon0/xp/HEAD/source/xp/ui/tui/textentry.d -------------------------------------------------------------------------------- /tag/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryhon0/xp/HEAD/tag/.gitignore -------------------------------------------------------------------------------- /tag/dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryhon0/xp/HEAD/tag/dub.json -------------------------------------------------------------------------------- /tag/source/tag.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryhon0/xp/HEAD/tag/source/tag.d --------------------------------------------------------------------------------