waybar: heavy style attempts

This commit is contained in:
Aminda Suomalainen 2024-01-20 18:49:14 +02:00
parent 5c299c6ce8
commit e8f95603cc
Signed by: Mikaela
SSH Key Fingerprint: SHA256:CXLULpqNBdUKB6E6fLA1b/4SzG0HvKD19PbIePU175Q
2 changed files with 100 additions and 21 deletions

View File

@ -1,4 +1,4 @@
/* https://github.com/jan-warchol/selenized/blob/master/other-apps/wofi/selenized-dark.css */ /* Originally based upon, but heavily modified from https://github.com/jan-warchol/selenized/blob/master/other-apps/wofi/selenized-dark.css */
* { * {
border: none; border: none;
@ -11,29 +11,29 @@
} }
window#waybar { window#waybar {
background: #103c48; background: #000000;
border-bottom: 3px solid rgba(100, 114, 125, 0.5); border-bottom: 3px solid #ff0000;
color: white; color: #ff0000;
} }
tooltip { tooltip {
background: rgba(43, 48, 59, 0.5); background: rgba(43, 48, 59, 0.5);
border: 1px solid rgba(100, 114, 125, 0.5); border: 1px solid #ff0000;
} }
tooltip label { tooltip label {
color: white; color: #ff0000;
} }
#workspaces button { #workspaces button {
padding: 0 5px; padding: 0 5px;
background: #103c48; background: #000000;
color: white; color: #ff0000;
border-bottom: 3px solid #103c48; border-bottom: 3px solid #000000;
} }
#workspaces button.focused { #workspaces button.focused {
background: #64727d; background: #64727d;
border-bottom: 3px solid white; border-bottom: 3px solid #ff0000;
} }
#mode, #mode,
@ -43,34 +43,34 @@ tooltip label {
} }
#mode { #mode {
background: #103c48; background: #000000;
border-bottom: 3px solid white; border-bottom: 3px solid #ff0000;
} }
#clock { #clock {
background-color: #103c48; background-color: #000000;
} }
#battery { #battery {
background-color: #103c48; background-color: #000000;
color: white; color: #ff0000;
} }
#battery.charging { #battery.charging {
color: white; color: #ff0000;
background-color: #103c48; background-color: #000000;
} }
@keyframes blink { @keyframes blink {
to { to {
background-color: #103c48; background-color: #000000;
color: white; color: #ff0000;
} }
} }
#battery.warning:not(.charging) { #battery.warning:not(.charging) {
background: #f53c3c; background: #ffffff;
color: white; color: #0000ff;
animation-name: blink; animation-name: blink;
animation-duration: 0.5s; animation-duration: 0.5s;
animation-timing-function: linear; animation-timing-function: linear;

View File

@ -0,0 +1,79 @@
/* https://github.com/jan-warchol/selenized/blob/master/other-apps/wofi/selenized-dark.css */
* {
border: none;
border-radius: 0;
font-family:
Comic Shanns Mono-Regular,
monospace;
font-size: 10px;
min-height: 0;
}
window#waybar {
background: #103c48;
border-bottom: 3px solid rgba(100, 114, 125, 0.5);
color: white;
}
tooltip {
background: rgba(43, 48, 59, 0.5);
border: 1px solid rgba(100, 114, 125, 0.5);
}
tooltip label {
color: white;
}
#workspaces button {
padding: 0 5px;
background: #103c48;
color: white;
border-bottom: 3px solid #103c48;
}
#workspaces button.focused {
background: #64727d;
border-bottom: 3px solid white;
}
#mode,
#clock,
#battery {
padding: 0 10px;
}
#mode {
background: #103c48;
border-bottom: 3px solid white;
}
#clock {
background-color: #103c48;
}
#battery {
background-color: #103c48;
color: white;
}
#battery.charging {
color: white;
background-color: #103c48;
}
@keyframes blink {
to {
background-color: #103c48;
color: white;
}
}
#battery.warning:not(.charging) {
background: #f53c3c;
color: white;
animation-name: blink;
animation-duration: 0.5s;
animation-timing-function: linear;
animation-iteration-count: infinite;
animation-direction: alternate;
}