feat(waybar): add a record module to track screen recording

This commit is contained in:
Yorick Barbanneau 2025-09-01 01:20:43 +02:00
parent ed79106342
commit 79d55b304c
Signed by: ephase
GPG key ID: 246042E52B41FFCF
2 changed files with 50 additions and 2 deletions

View file

@ -117,3 +117,17 @@ button:hover{
font-family: "DejaVu sans";
font-size: 12px;
}
#custom-screenrecord {
color: @color-critical;
border-bottom: 1px solid @color-critical;
animation-name: critical-animation;
animation-duration: 2s;
animation-timing-function: ease-in-out;
animation-direction: alternate;
animation-iteration-count: infinite;
}
@keyframes critical-animation {
from {color: @color-critical;}
to {color: white;}
}