cosmic-comp/src/utils/mod.rs
Ian Douglas Scott 087be20365 Add util function for boolean env vars
It's probably good to be consistent about what is recognized as "true"
without copying the same code.
2024-10-15 11:45:46 +02:00

12 lines
214 B
Rust

// SPDX-License-Identifier: GPL-3.0-only
pub mod env;
mod ids;
pub(crate) use self::ids::id_gen;
pub mod geometry;
pub mod iced;
pub mod prelude;
pub mod quirks;
pub mod rlimit;
pub mod screenshot;
pub mod tween;