Files
funman300 c21a2834b7 revert tray drawer feature and remove mouse-battery module
The tray drawer added complexity (drawer config, custom chevron module,
state-feedback CSS) for what amounts to a small visual refinement.
Removed in favour of the original always-visible tray. The mouse-battery
indicator was also removed from the bar.

Deletes:
- waybar/mouse-battery.sh + symlink + install.sh entry
- group/tray-drawer + custom/mouse-battery blocks in config.jsonc
- #custom-tray-arrow rules from style.css
- docs/superpowers/{specs,plans} for the drawer feature

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-01 09:41:00 -07:00

59 lines
783 B
CSS

@import url("../theme/colors.css");
* {
font-family: JetBrainsMono Nerd Font;
font-size: 13px;
}
window#waybar {
background: @tn-bg-a90;
color: @tn-fg;
}
#workspaces button {
padding: 0 8px;
color: @tn-fg-muted;
}
#workspaces button.focused {
color: @tn-blue;
}
#custom-clock, #battery, #network, #pulseaudio,
#cpu, #temperature,
#custom-power-profile, #custom-fan-profile {
padding: 0 12px;
}
#custom-power-profile.performance {
color: @tn-yellow;
}
#custom-power-profile.power-saver {
color: @tn-green;
}
#battery.warning {
color: @tn-yellow;
}
#battery.critical {
color: @tn-red;
}
#cpu.warning {
color: @tn-yellow;
}
#cpu.critical {
color: @tn-red;
}
#temperature.warm {
color: @tn-yellow;
}
#temperature.critical {
color: @tn-red;
}