Refresh clock on the minute instead of every 10 seconds.

This commit is contained in:
Tom Alexander
2024-05-07 08:52:34 -04:00
parent a2bdb93d5e
commit 5fa7f918a1
8 changed files with 89 additions and 170 deletions

View File

@@ -1,15 +1,15 @@
/* Work-around for regressions introduced in 0.9.15 */
* {
all: unset;
all: unset;
}
/* Reset all styles */
* {
border: none;
border-radius: 0;
min-height: 0;
margin: 0;
padding: 0;
border: none;
border-radius: 0;
min-height: 0;
margin: 0;
padding: 0;
}
/* -----------------------------------------------------------------------------
@@ -17,43 +17,43 @@
* -------------------------------------------------------------------------- */
@keyframes blink-warning {
70% {
color: white;
}
70% {
color: white;
}
to {
color: white;
background-color: orange;
}
to {
color: white;
background-color: orange;
}
}
@keyframes blink-critical {
70% {
color: white;
}
70% {
color: white;
}
to {
color: white;
background-color: red;
}
to {
color: white;
background-color: red;
}
}
/* -----------------------------------------------------------------------------
* Base styles
* -------------------------------------------------------------------------- */
/* The whole bar */
#waybar {
background: #323232;
color: white;
font-family: Cascadia Mono, monospace;
font-size: 10px;
background: #323232;
color: white;
font-family:
Cascadia Mono,
monospace;
font-size: 10px;
}
tooltip {
background-color: #323232;
background-color: #323232;
}
/* Each module */
@@ -65,7 +65,6 @@ tooltip {
#custom-clock,
#custom-sound,
#custom-temperature,
#custom-recording_indicator,
#idle_inhibitor,
#memory,
#mode,
@@ -73,46 +72,45 @@ tooltip {
#pulseaudio,
#temperature,
#tray {
padding-left: 10px;
padding-right: 10px;
border: 1px solid white;
padding-left: 10px;
padding-right: 10px;
border: 1px solid white;
}
/* -----------------------------------------------------------------------------
* Module styles
* -------------------------------------------------------------------------- */
#battery {
animation-timing-function: linear;
animation-iteration-count: infinite;
animation-direction: alternate;
animation-timing-function: linear;
animation-iteration-count: infinite;
animation-direction: alternate;
}
#custom-battery.warning {
color: orange;
color: orange;
}
#custom-battery.critical {
color: red;
color: red;
}
#battery.warning.discharging {
animation-name: blink-warning;
animation-duration: 3s;
animation-name: blink-warning;
animation-duration: 3s;
}
#battery.critical.discharging {
animation-name: blink-critical;
animation-duration: 2s;
animation-name: blink-critical;
animation-duration: 2s;
}
#clock {
font-weight: bold;
font-weight: bold;
}
#custom-clock {
font-weight: bold;
font-weight: bold;
}
#cpu {
@@ -120,92 +118,88 @@ tooltip {
}
#cpu.warning {
color: orange;
color: orange;
}
#cpu.critical {
color: red;
color: red;
}
#memory {
animation-timing-function: linear;
animation-iteration-count: infinite;
animation-direction: alternate;
animation-timing-function: linear;
animation-iteration-count: infinite;
animation-direction: alternate;
}
#memory.warning {
color: orange;
color: orange;
}
#memory.critical {
color: red;
animation-name: blink-critical;
animation-duration: 2s;
color: red;
animation-name: blink-critical;
animation-duration: 2s;
}
#mode {
background: #64727D;
border-top: 2px solid white;
/* To compensate for the top border and still have vertical centering */
padding-bottom: 2px;
background: #64727d;
border-top: 2px solid white;
/* To compensate for the top border and still have vertical centering */
padding-bottom: 2px;
}
#network {
/* No styles */
/* No styles */
}
#network.disconnected {
color: orange;
color: orange;
}
#pulseaudio {
/* No styles */
/* No styles */
}
#pulseaudio.muted {
/* No styles */
/* No styles */
}
#custom-spotify {
color: rgb(102, 220, 105);
color: rgb(102, 220, 105);
}
#temperature {
/* No styles */
/* No styles */
}
#temperature.critical {
color: red;
color: red;
}
#tray {
/* No styles */
/* No styles */
}
#window {
font-weight: bold;
font-weight: bold;
}
#workspaces button {
border-top: 2px solid transparent;
/* To compensate for the top border and still have vertical centering */
padding-bottom: 2px;
padding-left: 10px;
padding-right: 10px;
color: #888888;
border-top: 2px solid transparent;
/* To compensate for the top border and still have vertical centering */
padding-bottom: 2px;
padding-left: 10px;
padding-right: 10px;
color: #888888;
}
#workspaces button.focused {
border-color: #4c7899;
color: white;
background-color: #285577;
border-color: #4c7899;
color: white;
background-color: #285577;
}
#workspaces button.urgent {
border-color: #c9545d;
color: #c9545d;
}
#custom-recording_indicator {
color: red;
border-color: #c9545d;
color: #c9545d;
}