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

feat: implement upower module

This commit is contained in:
Chinmay Dalal 2023-03-19 02:16:49 +05:30 committed by Jake Stanger
parent 1e1d65ae49
commit ad3c171eca
No known key found for this signature in database
GPG key ID: C51FC8F9CB0BEA61
9 changed files with 1130 additions and 450 deletions

View file

@ -223,6 +223,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),
}