1
0
Fork 0
mirror of https://github.com/Zedfrigg/ironbar.git synced 2025-07-01 02:31:04 +02:00

Merge pull request #83 from p00f/upower-string

implement upower module
This commit is contained in:
Jake Stanger 2023-04-30 00:26:34 +01:00 committed by GitHub
commit 0e3102de8c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 1130 additions and 450 deletions

View file

@ -218,6 +218,8 @@ fn add_modules(
ModuleConfig::SysInfo(mut module) => add_module!(module, id),
#[cfg(feature = "tray")]
ModuleConfig::Tray(mut module) => add_module!(module, id),
#[cfg(feature = "upower")]
ModuleConfig::Upower(mut module) => add_module!(module, id),
#[cfg(feature = "workspaces")]
ModuleConfig::Workspaces(mut module) => add_module!(module, id),
}