All checks were successful
Check / eval (push) Successful in 3m3s
nomarchy-doctor-status: silent while nomarchy-doctor exits 0 (or is absent), so the module only exists when something is actually broken — then a red warning glyph with the first ✖ lines jq-escaped into the tooltip; clicking opens the full sheet (nomarchy-menu doctor). Interval 300s: the health check is real work (unit/disk/git sweeps), and this is a tripwire, not a monitor. Added to the generated bar (status group, after battery) and to BOTH summer whole-swap bars (module list + jsonc block + CSS membership + @red rule) per the parity rule. Verified: V0; V1 — template-home builds with the module in config + CSS, the status script passes bash -n, both summer jsonc still parse; functional — the self-gate exits silently, and a shimmed failing doctor yields jq-valid JSON with class "bad" and the ✖ lines in the tooltip. Live render queued for hardware. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
136 lines
2.6 KiB
CSS
Executable File
136 lines
2.6 KiB
CSS
Executable File
@define-color bg_dim #efebd4;
|
|
@define-color bg0 #fdf6e3;
|
|
@define-color bg1 #f4f0d9;
|
|
@define-color bg2 #efebd4;
|
|
@define-color bg3 #e6e2cc;
|
|
@define-color bg4 #e0dcc7;
|
|
@define-color bg5 #bdc3af;
|
|
@define-color fg #5c6a72;
|
|
@define-color red #f85552;
|
|
@define-color orange #f57d26;
|
|
@define-color yellow #dfa000;
|
|
@define-color green #8da101;
|
|
@define-color aqua #35a77c;
|
|
@define-color blue #3a94c5;
|
|
@define-color purple #df69ba;
|
|
@define-color grey0 #a6b0a0;
|
|
@define-color grey1 #939f91;
|
|
@define-color grey2 #829181;
|
|
|
|
/* margin: top right bottom left */
|
|
/* Spacing outside the element */
|
|
|
|
/* padding: top right bottom left */
|
|
/* Spacing inside the element */
|
|
|
|
* {
|
|
font-family: JetBrainsMono Nerd Font, FontAwesome;
|
|
font-size: 16px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
window#waybar {
|
|
background-color: @fg;
|
|
color: @bg0;
|
|
transition-property: background-color;
|
|
transition-duration: 0.5s;
|
|
border-radius: 0px 0px 15px 15px;
|
|
transition-duration: .5s;
|
|
|
|
border-bottom-width: 5px;
|
|
border-bottom-color: #3d4a52;
|
|
border-bottom-style: solid;
|
|
}
|
|
|
|
#custom-launcher,
|
|
#custom-recording,
|
|
#idle_inhibitor,
|
|
#clock,
|
|
#clock-date,
|
|
#workspaces,
|
|
#pulseaudio,
|
|
#custom-powerprofile,
|
|
#custom-nightlight,
|
|
#language,
|
|
#custom-updates,
|
|
#battery,
|
|
#tray,
|
|
#custom-doctor,
|
|
#custom-notification,
|
|
#custom-powermenu {
|
|
background-color: @bg0;
|
|
color: @fg;
|
|
|
|
padding-left: 10px;
|
|
padding-right: 10px;
|
|
margin-top: 7px;
|
|
margin-bottom: 12px;
|
|
border-radius: 10px;
|
|
|
|
border-bottom-width: 5px;
|
|
border-bottom-color: @bg5;
|
|
border-bottom-style: solid;
|
|
}
|
|
|
|
#workspaces {
|
|
padding: 0px;
|
|
}
|
|
|
|
/* The power-profile speedometer glyph renders small in its em box. */
|
|
#custom-powerprofile {
|
|
font-size: 20px;
|
|
}
|
|
|
|
#workspaces button.active {
|
|
background-color: @blue;
|
|
color: @bg0;
|
|
|
|
border-radius: 10px;
|
|
|
|
margin-bottom: -5px;
|
|
|
|
border-bottom-width: 5px;
|
|
border-bottom-color: #1e6791;
|
|
border-bottom-style: solid;
|
|
}
|
|
|
|
#custom-launcher {
|
|
background-color: @green;
|
|
color: @bg0;
|
|
border-bottom-color: #5d6b00;
|
|
|
|
margin-left: 15px;
|
|
padding-left: 20px;
|
|
padding-right: 21px;
|
|
/* The Nomarchy mark lives at U+F000 in the dedicated "Nomarchy" font;
|
|
pin the family or the Nerd Font's glass icon at U+F000 wins. */
|
|
font-family: Nomarchy;
|
|
font-size: 18px;
|
|
}
|
|
|
|
#custom-powermenu {
|
|
background-color: @red;
|
|
color: @bg0;
|
|
border-bottom-color: #b32f2c;
|
|
|
|
margin-right: 15px;
|
|
padding-left: 20px;
|
|
padding-right: 23px;
|
|
}
|
|
|
|
#idle_inhibitor {
|
|
padding-left: 10px;
|
|
padding-right: 10px;
|
|
font-size: 20px;
|
|
}
|
|
|
|
/* Recording in progress: alert red; the module is also the stop button. */
|
|
#custom-recording.recording {
|
|
color: @red;
|
|
}
|
|
|
|
/* Doctor tripwire: only rendered when something is broken. */
|
|
#custom-doctor {
|
|
color: @red;
|
|
}
|