Description
i want this
not this
i want to tell that i want it look like rest of the module
i am not good a css so here my css
@import url("colors.css");
- {
/*otf-font-awesome
is required to be installed for icons */
font-family: JetBrains Mono Nerd Font;
font-size: 13px;
}
window#waybar {
background-color: @background;
color: @Foreground;
transition-property: background-color;
transition-duration: .5s;
border-radius: 0px;
}
window#waybar.hidden {
opacity: 0.2;
}
#workspaces {
background: @primary;
color: #000000;
margin : 5px;
border-radius:15px
}
#workspaces button {
background: @primary;
color: #000000;
transition: all 0.5s cubic-bezier(0.55, -0.68, 0.48, 1.68);
}
#workspaces button.active {
background: @secondary;
color: #000000;
transition: all 0.5s cubic-bezier(0.55, -0.68, 0.48, 1.68);
}
#clock,
#battery,
#cpu,
#memory,
#backlight,
#pulseaudio,
#custom-media,
#tray,
#mpd {
padding: 0 10px;
color: #ffffff;
}
#window,
#workspaces {
margin: 0 4px;
}
/* If workspaces is the leftmost module, omit left margin */
.modules-left > widget:first-child > #workspaces {
margin-left: 0;
}
/* If workspaces is the rightmost module, omit right margin */
.modules-right > widget:last-child > #workspaces {
margin-right: 0;
}
#clock {
background-color: @primary;
color: #000000;
border-radius: 15px;
margin: 5px;
}
#battery {
background-color: @primary;
color: #000000;
border-radius: 15px;
margin: 5px;
}
#battery.charging, #battery.plugged {
color: #000000;
background-color: @primary;
border-radius: 15px;
margin: 5px;
}
@Keyframes blink {
to {
background-color: @primary;
color: #000000;
border-radius: 15px;
margin: 5px;
}
}
/* Using steps() instead of linear as a timing function to limit cpu usage */
#battery.critical:not(.charging) {
background-color: @primary;
color: #000000;
border-radius: 15px;
margin: 5px;
animation-name: blink;
animation-duration: 0.5s;
animation-timing-function: steps(12);
animation-iteration-count: infinite;
animation-direction: alternate;
}
#cpu {
background-color: @background;
color: @color5;
border-radius: 15px;
margin: 3px;
}
#memory {
background-color: #282828;
color: #83a598;
border-radius: 15px;
margin: 3px;
}
#backlight {
background-color: @primary;
color: #000000;
border-radius: 15px;
margin: 5px;
}
#network {
background-color: @background;
}
#network.disconnected {
background-color: #f53c3c;
}
#pulseaudio {
background-color: @primary;
color: #000000;
border-radius: 15px;
margin: 5px;
}
#pulseaudio.muted {
background-color: @primary;
color: #000000;
border-radius: 15px;
margin: 5px;
}
#custom-media {
background-color: @background;
color: @color5;
border-radius: 15px;
margin: 3px;
}
#tray {
background-color: @background;
border-radius: 15px;
margin: 3px;
}
#tray > .passive {
-gtk-icon-effect: dim;
}
#tray > .needs-attention {
-gtk-icon-effect: highlight;
background-color: #eb4d4b;
}
}
#custom-updates {
background: @background;
color: @color5;
border-radius: 15px;
margin: 4px;
}
#custom-power {
background: @primary;
color: #000000;
border-radius: 15px;
margin: 4px;
}