Skip to content

Commit

Permalink
Resolves ksni issues in Ubuntu & adding additional menu for battery s…
Browse files Browse the repository at this point in the history
…tatus
  • Loading branch information
nate131 committed May 7, 2024
1 parent 1f3e438 commit 5944745
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions src/battery_tray.rs
Original file line number Diff line number Diff line change
Expand Up @@ -66,10 +66,18 @@ impl BatteryTray {

impl Tray for BatteryTray {
fn icon_name(&self) -> String {
"headset".into()
"audio-headset".into()
}
fn id(&self) -> String {
env!("CARGO_PKG_NAME").into()
}
fn menu(&self) -> Vec<MenuItem<Self>> {
vec![
StandardItem {
label: format!("Battery level: {bat}% ({crg})", bat = self.battery_level,crg = (if self.charging.is_some() { "Charging" } else {"Discharging"})).into(),
..Default::default()
}
.into(),
StandardItem {
label: "Exit".into(),
icon_name: "application-exit".into(),
Expand Down Expand Up @@ -111,8 +119,8 @@ impl Tray for BatteryTray {
ToolTip {
title: "HyperX Cloud II".to_string(),
description: description,
icon_name: "".into(),
icon_name: "audio-headset".into(),
icon_pixmap: Vec::new(),
}
}
}
}

0 comments on commit 5944745

Please sign in to comment.