├── .github ├── dependabot.yml └── workflows │ ├── build.yml │ └── deploy.yml ├── .gitignore ├── .idea ├── .gitignore ├── git_toolbox_blame.xml ├── git_toolbox_prj.xml ├── inspectionProfiles │ └── profiles_settings.xml ├── misc.xml ├── modules.xml ├── mpd-discord-rpc.iml ├── runConfigurations │ ├── Clippy.xml │ ├── Format.xml │ └── Run.xml └── vcs.xml ├── CHANGELOG.md ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── flake.lock ├── flake.nix ├── mpd-discord-rpc.service ├── nix ├── package.nix └── shell.nix └── src ├── album_art.rs ├── config.rs ├── main.rs └── mpd_conn.rs /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeStanger/mpd-discord-rpc/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeStanger/mpd-discord-rpc/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeStanger/mpd-discord-rpc/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | **/*.rs.bk 3 | .vscode 4 | # nix build artifacts 5 | result/ 6 | -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeStanger/mpd-discord-rpc/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/git_toolbox_blame.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeStanger/mpd-discord-rpc/HEAD/.idea/git_toolbox_blame.xml -------------------------------------------------------------------------------- /.idea/git_toolbox_prj.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeStanger/mpd-discord-rpc/HEAD/.idea/git_toolbox_prj.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeStanger/mpd-discord-rpc/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeStanger/mpd-discord-rpc/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeStanger/mpd-discord-rpc/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/mpd-discord-rpc.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeStanger/mpd-discord-rpc/HEAD/.idea/mpd-discord-rpc.iml -------------------------------------------------------------------------------- /.idea/runConfigurations/Clippy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeStanger/mpd-discord-rpc/HEAD/.idea/runConfigurations/Clippy.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/Format.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeStanger/mpd-discord-rpc/HEAD/.idea/runConfigurations/Format.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/Run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeStanger/mpd-discord-rpc/HEAD/.idea/runConfigurations/Run.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeStanger/mpd-discord-rpc/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeStanger/mpd-discord-rpc/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeStanger/mpd-discord-rpc/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeStanger/mpd-discord-rpc/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeStanger/mpd-discord-rpc/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeStanger/mpd-discord-rpc/HEAD/README.md -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeStanger/mpd-discord-rpc/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeStanger/mpd-discord-rpc/HEAD/flake.nix -------------------------------------------------------------------------------- /mpd-discord-rpc.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeStanger/mpd-discord-rpc/HEAD/mpd-discord-rpc.service -------------------------------------------------------------------------------- /nix/package.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeStanger/mpd-discord-rpc/HEAD/nix/package.nix -------------------------------------------------------------------------------- /nix/shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeStanger/mpd-discord-rpc/HEAD/nix/shell.nix -------------------------------------------------------------------------------- /src/album_art.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeStanger/mpd-discord-rpc/HEAD/src/album_art.rs -------------------------------------------------------------------------------- /src/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeStanger/mpd-discord-rpc/HEAD/src/config.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeStanger/mpd-discord-rpc/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/mpd_conn.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeStanger/mpd-discord-rpc/HEAD/src/mpd_conn.rs --------------------------------------------------------------------------------