Update icons

This commit is contained in:
Ian Douglas Scott 2022-07-01 18:54:47 -07:00
parent 9c9d1f2f4c
commit 3b2b01e259
2 changed files with 2 additions and 1 deletions

View file

@ -34,6 +34,7 @@ fn main() {
let menu_button = cascade! {
gtk4::MenuButton::new();
..set_icon_name("user-invisible-symbolic"); // TODO
..set_popover(Some(&popover));
};

View file

@ -56,7 +56,7 @@ fn build_ui(application: &gtk4::Application) {
// TODO cleanup
// TODO adjust battery icon based on charge
let image = gtk4::Image::from_icon_name("battery-full-symbolic");
let image = gtk4::Image::from_icon_name("system-shutdown-symbolic");
image.add_css_class("panel_icon");
image.set_pixel_size(config.get_applet_icon_size().try_into().unwrap());
view! {