tvl-depot/users/tazjin/dotfiles/waybar/config.jsonc
Vincent Ambo 72bdb15958 feat(tazjin/dotfiles): add waybar configuration
This configuration is not automatically placed anywhere yet, because I'm also
still actively iterating on it.

Change-Id: I0a13fcbc2b9a5587480f6a69a73ab99b36d209e6
Reviewed-on: https://cl.tvl.fyi/c/depot/+/12435
Tested-by: BuildkiteCI
Reviewed-by: tazjin <tazjin@tvl.su>
Autosubmit: tazjin <tazjin@tvl.su>
2024-09-05 22:11:42 +00:00

29 lines
749 B
Text

// TODO: idle-inhibitor? image (tux?)?
{
"layer": "top",
"position": "bottom",
"modules-right": ["pulseaudio", "backlight", "battery", "tray", "clock"],
"pulseaudio": {
"on-click": "pavucontrol",
// Font "Awesome" speaker icons can't be made to render, I don't care why, emoji time.
"format": "{volume}% 🎧",
"format-muted": "{volume}% "
},
"battery": {
"format": "{capacity}% {icon}",
"format-icons": ["", "", "", "", ""]
},
"backlight": {
"format": "{percent}% {icon}",
"format-icons": [""],
"on-scroll-up": "light -A 1",
"on-scroll-down": "light -U 1"
},
"clock": {
"format-alt": "{:%a, %d. %b %H:%M}"
},
"tray": {
"icon-size": 20,
"spacing": 10
}
}