✨ add waybar config
Signed-off-by: SindreKjelsrud <sindre@kjelsrud.dev>
This commit is contained in:
parent
494431a913
commit
11b1185afc
2 changed files with 241 additions and 0 deletions
158
.config/waybar/style.css
Normal file
158
.config/waybar/style.css
Normal file
|
@ -0,0 +1,158 @@
|
|||
* {
|
||||
min-height: 0;
|
||||
font-family: "JetBrainsMono Nerd Font Mono";
|
||||
font-size: 20px;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
window#waybar {
|
||||
transition-property: background-color;
|
||||
transition-duration: 0.5s;
|
||||
/* background-color: #1e1e2e; */
|
||||
/* background-color: #181825; */
|
||||
background-color: #11111b;
|
||||
/* background-color: rgba(24, 24, 37, 0.6); */
|
||||
}
|
||||
|
||||
window#waybar.hidden {
|
||||
opacity: 0.5;
|
||||
}
|
||||
|
||||
#workspaces {
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
#workspaces button {
|
||||
all: initial;
|
||||
min-width: 0;
|
||||
box-shadow: inset 0 -3px transparent;
|
||||
padding: 2px 10px;
|
||||
min-height: 0;
|
||||
margin: 4px 4px;
|
||||
border-radius: 4px;
|
||||
/* background-color: #181825; */
|
||||
background-color: #1e1e2e;
|
||||
color: #cdd6f4;
|
||||
}
|
||||
|
||||
#workspaces button:hover {
|
||||
box-shadow: inherit;
|
||||
text-shadow: inherit;
|
||||
color: #1e1e2e;
|
||||
background-color: #cdd6f4;
|
||||
}
|
||||
|
||||
#workspaces button.active {
|
||||
color: #1e1e2e;
|
||||
background-color: #89b4fa;
|
||||
}
|
||||
|
||||
#workspaces button.urgent {
|
||||
color: #1e1e2e;
|
||||
background-color: #f38ba8;
|
||||
}
|
||||
|
||||
#clock,
|
||||
#pulseaudio,
|
||||
#battery,
|
||||
#backlight,
|
||||
#custom-logo,
|
||||
#custom-power,
|
||||
#custom-spotify,
|
||||
#cpu,
|
||||
#tray,
|
||||
#memory,
|
||||
#window {
|
||||
min-height: 0;
|
||||
padding: 2px 10px;
|
||||
border-radius: 4px;
|
||||
margin: 4px 4px;
|
||||
/* background-color: #181825; */
|
||||
background-color: #1e1e2e;
|
||||
}
|
||||
|
||||
#custom-sep {
|
||||
padding: 0px;
|
||||
color: #585b70;
|
||||
}
|
||||
|
||||
#custom-spotify.playing {
|
||||
color: #a6e3a1;
|
||||
}
|
||||
|
||||
#custom-spotify.liked {
|
||||
color: #cba6f7;
|
||||
}
|
||||
#custom-spotify.added {
|
||||
color: #f9e2af;
|
||||
}
|
||||
|
||||
#custom-spotify.removed {
|
||||
color: #f38ba8;
|
||||
}
|
||||
|
||||
#custom-spotify.paused {
|
||||
color: #9399b2;
|
||||
}
|
||||
|
||||
window#waybar.empty #window {
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
#cpu {
|
||||
color: #94e2d5;
|
||||
}
|
||||
|
||||
#memory {
|
||||
color: #cba6f7;
|
||||
}
|
||||
|
||||
#clock {
|
||||
color: #74c7ec;
|
||||
}
|
||||
|
||||
#clock.simpleclock {
|
||||
color: #89b4fa;
|
||||
}
|
||||
|
||||
#backlight {
|
||||
color: #d9b172;
|
||||
}
|
||||
|
||||
#battery {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
#window {
|
||||
color: #a6e3a1;
|
||||
}
|
||||
|
||||
#pulseaudio {
|
||||
color: #b4befe;
|
||||
}
|
||||
|
||||
#pulseaudio.muted {
|
||||
color: #a6adc8;
|
||||
}
|
||||
|
||||
#custom-logo {
|
||||
color: #89b4fa;
|
||||
}
|
||||
|
||||
#custom-power {
|
||||
color: #f38ba8;
|
||||
padding-right: 5px;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
@keyframes blink {
|
||||
to {
|
||||
background-color: #f38ba8;
|
||||
color: #181825;
|
||||
}
|
||||
}
|
||||
|
||||
tooltip {
|
||||
background-color: #181825;
|
||||
}
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue