Created
October 22, 2019 17:55
-
-
Save nununoisy/2b859a324345a1b73bc105e38e7eb55f to your computer and use it in GitHub Desktop.
Waybar CSS
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* { | |
border: none; | |
border-radius: 0; | |
/* `otf-font-awesome` is required to be installed for icons */ | |
font-family: Roboto, Helvetica, Arial, sans-serif; | |
font-size: 13px; | |
min-height: 0; | |
} | |
window#waybar { | |
background-color: rgba(43, 48, 59, 0.5); | |
border-bottom: 0; | |
color: #ffffff; | |
transition-property: background-color; | |
transition-duration: .5s; | |
} | |
window#waybar.hidden { | |
opacity: 0.2; | |
} | |
/* | |
window#waybar.empty { | |
background-color: transparent; | |
} | |
window#waybar.solo { | |
background-color: #FFFFFF; | |
} | |
*/ | |
#workspaces button { | |
padding: 0 5px; | |
background-color: transparent; | |
color: #ffffff; | |
border-bottom: 3px solid transparent; | |
} | |
/* https://github.com/Alexays/Waybar/wiki/FAQ#the-workspace-buttons-have-a-strange-hover-effect */ | |
#workspaces button:hover { | |
background: rgba(255, 255, 255, 0.2); | |
box-shadow: inherit; | |
border-bottom: 3px solid #ffffff; | |
} | |
#workspaces button.focused { | |
background-color: #f44334; | |
border-bottom: 3px solid #000000; | |
color: #000000; | |
} | |
#workspaces button.urgent { | |
background-color: #ffeb3b; | |
color: #000000; | |
border-bottom: 3px solid #000000; | |
} | |
#mode { | |
background-color: #64727D; | |
border-bottom: 3px solid #ffffff; | |
} | |
#clock, | |
#battery, | |
#cpu, | |
#memory, | |
#temperature, | |
#backlight, | |
#network, | |
#pulseaudio, | |
#custom-media, | |
#tray, | |
#mode, | |
#idle_inhibitor, | |
#mpd { | |
padding: 0 10px; | |
margin: 0 4px; | |
color: #ffffff; | |
} | |
#battery.charging { | |
color: #ffffff; | |
background-color: #26A65B; | |
} | |
@keyframes blink { | |
to { | |
background-color: #ffffff; | |
color: #000000; | |
} | |
} | |
#battery.critical:not(.charging) { | |
background-color: #d32f2f; | |
color: #ffffff; | |
animation-name: blink; | |
animation-duration: 0.5s; | |
animation-timing-function: linear; | |
animation-iteration-count: infinite; | |
animation-direction: alternate; | |
} | |
label:focus { | |
background-color: #000000; | |
} | |
#network.disconnected { | |
background-color: #d32f2f; | |
} | |
#pulseaudio.muted { | |
background-color: #d32f2f; | |
} | |
#temperature.critical { | |
background-color: #d32f2f; | |
} | |
#idle_inhibitor.activated { | |
background-color: #ffffff; | |
color: #000000; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment