//! Generic key/value settings entity for DB-stored runtime flags.
//!
//! Used for global flags that need to be togglable at runtime (e.g.
//! `show_hidden_workspaces`). The `active_group` per-output state stays on
//! the `outputs` table.
use *;
/// Key constant for the `show_hidden_workspaces` global flag.
pub const SHOW_HIDDEN_WORKSPACES: &str = "show_hidden_workspaces";