added pacman notifier to waybar

This commit is contained in:
Mike G 2023-11-11 21:58:40 -05:00
parent a68c513f34
commit 607c2a02da
2 changed files with 52 additions and 3 deletions

View file

@ -129,3 +129,24 @@ tooltip label
padding: 0 10px;
border-right: 1px solid @primary_fg_color;
}
@keyframes blink-update
{
to
{
background-color: dodgerblue;
}
}
#custom-pacman
{
animation-timing-function: linear;
animation-iteration-count: infinite;
animation-direction: alternate;
}
#custom-pacman.pending-updates
{
animation-name: blink-update;
animation-duration: 3s;
}