├── .github └── workflows │ └── rust.yml ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── LICENCE ├── README.md ├── scripts ├── README.md ├── auto-temperature.py └── toggle-invert-display.sh └── src ├── color.rs ├── dbus_client.rs ├── dbus_server.rs ├── main.rs └── wayland.rs /.github/workflows/rust.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxVerevkin/wl-gammarelay-rs/HEAD/.github/workflows/rust.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxVerevkin/wl-gammarelay-rs/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxVerevkin/wl-gammarelay-rs/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxVerevkin/wl-gammarelay-rs/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxVerevkin/wl-gammarelay-rs/HEAD/README.md -------------------------------------------------------------------------------- /scripts/README.md: -------------------------------------------------------------------------------- 1 | Scripts to control `wl-gammarelay-rs`. 2 | -------------------------------------------------------------------------------- /scripts/auto-temperature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxVerevkin/wl-gammarelay-rs/HEAD/scripts/auto-temperature.py -------------------------------------------------------------------------------- /scripts/toggle-invert-display.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxVerevkin/wl-gammarelay-rs/HEAD/scripts/toggle-invert-display.sh -------------------------------------------------------------------------------- /src/color.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxVerevkin/wl-gammarelay-rs/HEAD/src/color.rs -------------------------------------------------------------------------------- /src/dbus_client.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxVerevkin/wl-gammarelay-rs/HEAD/src/dbus_client.rs -------------------------------------------------------------------------------- /src/dbus_server.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxVerevkin/wl-gammarelay-rs/HEAD/src/dbus_server.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxVerevkin/wl-gammarelay-rs/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/wayland.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxVerevkin/wl-gammarelay-rs/HEAD/src/wayland.rs --------------------------------------------------------------------------------