add style.css for waybar config

master
Alex 2022-11-18 15:48:47 -06:00
parent bd574577c6
commit 91eb1e7c51
1 changed files with 108 additions and 0 deletions

108
.config/waybar/style.css Normal file
View File

@ -0,0 +1,108 @@
* {
border: none;
border-radius: 0;
font-family: sans;
font-size: 12px;
min-height: 0;
}
window#waybar {
background: rgba(0,0,0,0.6);
color: white;
border-bottom: 3px solid transparent;
}
#window {
font-weight: bold;
font-family: "mono";
}
/*
#workspaces {
padding: 0 5px;
}
*/
#workspaces button {
padding: 0 2px;
background: transparent;
color: white;
}
#workspaces button.active {
background: transparent;
color: #c9545d;
border-bottom: 2px solid #c9545d;
}
#mode {
background: #64727D;
border-bottom: 3px solid white;
}
#idle_inhibitor {
padding: 0 10px;
color: #ffffff;
}
#idle_inhibitor, #mpd, #clock, #battery, #cpu, #memory, #network, #pulseaudio, #temperature, #custom-spotify, #tray, #mode {
background: transparent;
border-bottom: 3px solid black;
padding: 0 10px;
margin: 0 2px;
}
#clock {
font-weight: bold;
}
#battery {
}
#battery icon {
color: red;
}
#battery.charging {
}
@keyframes blink {
to {
background-color: #ffffff;
color: black;
}
}
#battery.warning:not(.charging) {
color: white;
animation-name: blink;
animation-duration: 0.5s;
animation-timing-function: linear;
animation-iteration-count: infinite;
animation-direction: alternate;
}
#cpu {
}
#memory {
}
#network {
}
#network.disconnected {
background: #f53c3c;
}
#pulseaudio {
}
#pulseaudio.muted {
}
#custom-spotify {
color: rgb(102, 220, 105);
}
#tray {
}