├── .gitignore ├── .vim └── coc-settings.json ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── LICENSE-APACHE-2.0 ├── README.md ├── screenshots ├── after.png └── before.png └── src ├── config.toml ├── lib.rs ├── main.rs └── settings.rs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allie-wake-up/swaycons/HEAD/.gitignore -------------------------------------------------------------------------------- /.vim/coc-settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allie-wake-up/swaycons/HEAD/.vim/coc-settings.json -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allie-wake-up/swaycons/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allie-wake-up/swaycons/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allie-wake-up/swaycons/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE-APACHE-2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allie-wake-up/swaycons/HEAD/LICENSE-APACHE-2.0 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allie-wake-up/swaycons/HEAD/README.md -------------------------------------------------------------------------------- /screenshots/after.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allie-wake-up/swaycons/HEAD/screenshots/after.png -------------------------------------------------------------------------------- /screenshots/before.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allie-wake-up/swaycons/HEAD/screenshots/before.png -------------------------------------------------------------------------------- /src/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allie-wake-up/swaycons/HEAD/src/config.toml -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- 1 | pub mod settings; 2 | -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allie-wake-up/swaycons/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/settings.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allie-wake-up/swaycons/HEAD/src/settings.rs --------------------------------------------------------------------------------