├── .cirrus.yml ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── assets └── demo.gif ├── ddlm-0.1.0.ebuild ├── fonts ├── Roboto-Regular.ttf └── dejavu │ └── DejaVuSansMono.ttf └── src ├── buffer.rs ├── color.rs ├── draw.rs ├── greetd.rs └── main.rs /.cirrus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathowl/ddlm/HEAD/.cirrus.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathowl/ddlm/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathowl/ddlm/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathowl/ddlm/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathowl/ddlm/HEAD/README.md -------------------------------------------------------------------------------- /assets/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathowl/ddlm/HEAD/assets/demo.gif -------------------------------------------------------------------------------- /ddlm-0.1.0.ebuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathowl/ddlm/HEAD/ddlm-0.1.0.ebuild -------------------------------------------------------------------------------- /fonts/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathowl/ddlm/HEAD/fonts/Roboto-Regular.ttf -------------------------------------------------------------------------------- /fonts/dejavu/DejaVuSansMono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathowl/ddlm/HEAD/fonts/dejavu/DejaVuSansMono.ttf -------------------------------------------------------------------------------- /src/buffer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathowl/ddlm/HEAD/src/buffer.rs -------------------------------------------------------------------------------- /src/color.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathowl/ddlm/HEAD/src/color.rs -------------------------------------------------------------------------------- /src/draw.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathowl/ddlm/HEAD/src/draw.rs -------------------------------------------------------------------------------- /src/greetd.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathowl/ddlm/HEAD/src/greetd.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathowl/ddlm/HEAD/src/main.rs --------------------------------------------------------------------------------