README: replace LD_PRELOAD with MOONGREET_NO_LAYER_SHELL env var, add missing features (GPU blur, journal logging, password wiping). build.rs: remove wallpaper.jpg reference. moongreet.toml: correct gtk-theme to Colloid-Grey-Dark-Catppuccin.
11 lines
290 B
Rust
11 lines
290 B
Rust
// ABOUTME: Build script for compiling GResource bundle.
|
|
// ABOUTME: Bundles style.css and default-avatar.svg into the binary.
|
|
|
|
fn main() {
|
|
glib_build_tools::compile_resources(
|
|
&["resources"],
|
|
"resources/resources.gresource.xml",
|
|
"moongreet.gresource",
|
|
);
|
|
}
|