dotfiles/waybar/.config/waybar/style.css

172 lines
2.0 KiB
CSS

* {
border: none;
border-radius: 0;
/* `otf-font-awesome` is required to be installed for icons */
all: unset;
font-family: Inconsolata Nerd Font;
font-size: 17px;
min-height: 0px;
}
window#waybar {
background-color: #211B29;
color: #D8DEE9;
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;
}
*/
/*
window#waybar.termite {
}
window#waybar.chromium {
}
*/
#workspaces button {
padding: 0 5px;
}
/* https://github.com/Alexays/Waybar/wiki/FAQ#the-workspace-buttons-have-a-strange-hover-effect */
#workspaces button:hover {
box-shadow: inherit;
text-shadow: inherit;
}
#workspaces button.focused {
color: #88C0D0;
}
#workspaces button.urgent {
color: #88C0D0;
}
#mode {
color: #88C0D0;
}
#clock,
#battery,
#cpu,
#memory,
#temperature,
#backlight,
#network,
#pulseaudio,
#custom-media,
#tray,
#mode,
#idle_inhibitor,
#mpd {
padding: 0 10px;
margin: 0 4px;
}
#custom-org-pomodoro{
padding: 0 10px;
}
#clock {
}
#battery {
background-color: #211B29;
}
#battery.charging {
}
@keyframes blink {
to {
background-color: #f53c3c;
color: #000000;
}
}
#battery.bat2.critical:not(.charging) {
color: #ffffff;
animation-name: blink;
animation-duration: 0.5s;
animation-timing-function: linear;
animation-iteration-count: 10;
animation-direction: alternate;
}
label:focus {
}
#cpu {
}
#memory {
}
#backlight {
}
#network {
}
#network.disconnected {
}
#pulseaudio {
color: #D8DEE9;
}
#pulseaudio.muted {
color: #D8DEE9;
}
#custom-media {
color: #D8DEE9;
min-width: 100px;
}
#custom-media.custom-spotify {
}
#custom-media.custom-vlc {
}
#temperature {
}
#temperature.critical {
}
#tray {
}
#idle_inhibitor {
}
#idle_inhibitor.activated {
}
#mpd {
}
#mpd.disconnected {
}
#mpd.stopped {
}
#mpd.paused {
}