battery + volume indicator

This commit is contained in:
2024-03-15 15:50:22 +01:00
parent 6b7c87f237
commit 4bf7b29e2f
3 changed files with 68 additions and 18 deletions

View File

@ -126,6 +126,15 @@ theme.awesome_icon = theme_assets.awesome_icon(
-- from /usr/share/icons and /usr/share/icons/hicolor will be used.
theme.icon_theme = nil
-- battery icon
theme.baticon = themes_path.."default/icons/battery.png"
-- volume icon
theme.mute = themes_path.."default/icons/audio-volume-muted.svg"
theme.vollow = themes_path.."default/icons/audio-volume-low.svg"
theme.volmed = themes_path.."default/icons/audio-volume-medium.svg"
theme.volhi = themes_path.."default/icons/audio-volume-high.svg"
return theme
-- vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80