Files
Cfp 399206b297 Update .config/waybar/config.jsonc
Update .config/waybar/style.css
2025-06-23 21:02:36 +02:00

326 lines
5.1 KiB
CSS

* {
border: none;
border-radius: 0px;
/* `otf-font-awesome` is required to be installed for icons */
font-family: "UbuntuMono Nerd Font";
font-size: 13px;
font-weight: 800;
min-height: 0;
}
window#waybar {
background-color: transparent;
color: #cdd6f4;
transition-property: background-color;
transition-duration: .5s;
}
window#waybar.hidden {
opacity: 0.2;
}
#workspaces button {
background: #1e1e2e;
color: #cdd6f4;
border-radius: 7px;
padding-right: 12px;
}
/* https://github.com/Alexays/Waybar/wiki/FAQ#the-workspace-buttons-have-a-strange-hover-effect */
#workspaces button:hover {
box-shadow: inherit;
text-shadow: inherit;
background: #262638;
color: #cdd6f4;
}
#workspaces button.active {
background: #45475a;
}
#workspaces button.urgent {
background-color: #eb4d4b;
}
#mode {
background-color: #64727D;
border-bottom: 3px solid #ffffff;
}
#clock,
#battery,
#cpu,
#memory,
#disk,
#temperature,
#backlight,
#network,
#pulseaudio,
#custom-media,
#custom-launcher,
#custom-power,
#custom-layout,
#custom-updater,
#custom-snip,
#custom-wallpaper,
#custom-notify,
#power-profiles-daemon,
#tags,
#taskbar,
#tray,
#mode,
#idle_inhibitor,
#mpd {
padding: 0 10px;
color: #cdd6f4;
border-radius: 7px;
}
#power-profiles-daemon {
padding-right: 15px;
}
#power-profiles-daemon.performance {
background-color: #f38ba8;
color: #ffffff;
}
#power-profiles-daemon.balanced {
background-color: #89b4fa;
color: #ffffff;
}
#power-profiles-daemon.power-saver {
background-color: #a6e3a1;
color: #000000;
}
#cpu {
background-color: #a6e3a1;
color: #000000;
}
#memory {
background-color: #cba6f7;
color: #000000;
}
#window,
#workspaces {
margin: 0px 4px;
}
/* If workspaces is the leftmost module, omit left margin */
.modules-left > widget:first-child > #workspaces {
margin-left: 0px;
}
/* If workspaces is the rightmost module, omit right margin */
.modules-right > widget:last-child > #workspaces {
margin-right: 0px;
}
#clock {
background-color: #f2cdcd;
color: #1e1e2e;
}
#battery {
background-color: #b4befe;
color: #1e1e2e;
}
#battery.charging, #battery.plugged {
color: #1e1e2e;
background-color: #a6e3a1;
}
@keyframes blink {
to {
background-color: #ffffff;
color: #000000;
}
}
#battery.critical:not(.charging) {
background-color: #f38ba8;
color: #1e1e2e;
animation-name: blink;
animation-duration: 0.5s;
animation-timing-function: linear;
animation-iteration-count: infinite;
animation-direction: alternate;
}
label:focus {
background-color: #000000;
}
#network {
background-color: #89dceb;
color: #1e1e2e;
}
#network.disconnected {
background-color: #89b4fa;
color: #f38ba8;
}
#pulseaudio {
background-color: #cba6f7;
color: #1e1e2e;
}
#pulseaudio.muted {
background-color: #cba6f7;
color: #f38ba8;
}
#custom-notify {
background-color: #f9e2af;
color: #313244;
font-size: 17px;
padding: 0px 13px 0px 10px;
}
#custom-media {
background-color: #171717;
color: white;
}
#custom-media.custom-spotify {
background-color: #171717;
color: white;
}
#custom-media.custom-vlc {
background-color: #171717;
color: white;
}
#custom-power{
background-color: #94e2d5;
color: #313244;
font-size: 18px;
margin-right: 10px;
padding: 0px 15px 0px 10px;
}
#custom-launcher{
background-color: #171717;
font-size: 20px;
margin-left: 5px;
}
#custom-layout{
background-color: #171717;
color: white;
font-size:20px;
}
#custom-updater {
background-color: #171717;
color: white;
}
#custom-snip {
background-color: #171717;
color: skyblue;
font-size: 20px;
}
#custom-wallpaper {
background-color: #171717;
color: pink;
font-size: 20px;
}
#tags{
background-color: #171717;
font-size: 20px;
}
#tags button.occupied {
color: skyblue;
margin: 5px;
background-color: #272727;
}
#tags button.focused {
color: black;
margin: 5px;
background-color: white;
}
#tags button.urgent{
color: red;
margin: 5px;
background-color:white;
}
#taskbar{
background-color: #171717;
border-radius: 0px 20px 20px 0px;
}
#temperature {
background-color: #171717;
color: #ffffff;
}
#temperature.critical {
background-color: #eb4d4b;
}
#tray {
background-color: #171717;
color: #ffffff;
}
#tray > .passive {
-gtk-icon-effect: dim;
background-color: #171717;
color: #ffffff;
}
#tray > .needs-attention {
-gtk-icon-effect: highlight;
background-color: #171717;
color: #ffffff;
}
#idle_inhibitor {
background-color: #171717;
border-radius: 20px 0px 0px 20px;
}
#idle_inhibitor.activated {
background-color: #171717;
color: #ffffff;
border-radius: 20px 0px 0px 20px;
}
#language {
background-color: #171717;
color: #ffffff;
min-width: 16px;
}
#keyboard-state {
background: #97e1ad;
color: #000000;
min-width: 16px;
}
#keyboard-state > label {
padding: 0px 5px;
}
#keyboard-state > label.locked {
background: rgba(0, 0, 0, 0.2);
}