Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
134 changes: 114 additions & 20 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ wayle-media = "0.1.2"
wayle-network = "0.1.2"
wayle-notification = "0.1.2"
wayle-power-profiles = "0.1.2"
wayle-sysinfo = "0.1.2"
wayle-sysinfo = { path = "../wayle-services/wayle-sysinfo" }
wayle-systray = "0.1.2"
wayle-traits = "0.1.2"
wayle-wallpaper = "0.1.2"
Expand Down
5 changes: 5 additions & 0 deletions crates/wayle-config/src/schemas/bar/types/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,8 @@ pub enum BarModule {
Cpu,
/// Quick access dashboard button.
Dashboard,
/// GPU usage, memory, and temperature.
Gpu,
/// Compositor keybind mode indicator (submaps in Hyprland, modes in Sway/River).
KeybindMode,
/// Hyprland workspace switcher.
Expand Down Expand Up @@ -251,6 +253,7 @@ impl BarModule {
Self::Clock => "clock",
Self::Cpu => "cpu",
Self::Dashboard => "dashboard",
Self::Gpu => "gpu",
Self::KeybindMode => "keybind-mode",
Self::HyprlandWorkspaces => "hyprland-workspaces",
Self::IdleInhibit => "idle-inhibit",
Expand Down Expand Up @@ -283,6 +286,7 @@ impl BarModule {
"clock" => Self::Clock,
"cpu" => Self::Cpu,
"dashboard" => Self::Dashboard,
"gpu" => Self::Gpu,
"keybind-mode" => Self::KeybindMode,
"hyprland-workspaces" => Self::HyprlandWorkspaces,
"idle-inhibit" => Self::IdleInhibit,
Expand Down Expand Up @@ -366,6 +370,7 @@ const BUILTIN_MODULES: &[&str] = &[
"clock",
"cpu",
"dashboard",
"gpu",
"hyprland-workspaces",
"hyprsunset",
"idle-inhibit",
Expand Down
Loading
Loading