├── .gitignore ├── Cargo.toml ├── LICENSE ├── README.md ├── assets ├── screenshot.png ├── screenshot1.png └── screenshot2.png ├── database.ron ├── spotify_queue.txt ├── src ├── audio.rs ├── config.rs ├── main.rs ├── mpris.rs ├── playlist.rs ├── track.rs ├── ui.rs └── util.rs ├── synchron.ron └── todo.md /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | Cargo.lock 3 | *.swp 4 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curlpipe/synchron/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curlpipe/synchron/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curlpipe/synchron/HEAD/README.md -------------------------------------------------------------------------------- /assets/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curlpipe/synchron/HEAD/assets/screenshot.png -------------------------------------------------------------------------------- /assets/screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curlpipe/synchron/HEAD/assets/screenshot1.png -------------------------------------------------------------------------------- /assets/screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curlpipe/synchron/HEAD/assets/screenshot2.png -------------------------------------------------------------------------------- /database.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curlpipe/synchron/HEAD/database.ron -------------------------------------------------------------------------------- /spotify_queue.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curlpipe/synchron/HEAD/spotify_queue.txt -------------------------------------------------------------------------------- /src/audio.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curlpipe/synchron/HEAD/src/audio.rs -------------------------------------------------------------------------------- /src/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curlpipe/synchron/HEAD/src/config.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curlpipe/synchron/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/mpris.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curlpipe/synchron/HEAD/src/mpris.rs -------------------------------------------------------------------------------- /src/playlist.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curlpipe/synchron/HEAD/src/playlist.rs -------------------------------------------------------------------------------- /src/track.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curlpipe/synchron/HEAD/src/track.rs -------------------------------------------------------------------------------- /src/ui.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curlpipe/synchron/HEAD/src/ui.rs -------------------------------------------------------------------------------- /src/util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curlpipe/synchron/HEAD/src/util.rs -------------------------------------------------------------------------------- /synchron.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curlpipe/synchron/HEAD/synchron.ron -------------------------------------------------------------------------------- /todo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curlpipe/synchron/HEAD/todo.md --------------------------------------------------------------------------------