dotfiles-remastered/.config/waybar/style.css

194 lines
2.8 KiB
CSS
Raw Normal View History

2023-10-25 20:45:26 +00:00
@define-color color0 #2e3440;
2023-10-26 18:57:09 +00:00
@define-color bg #2e3440;
@define-color fg #323f2d;
@define-color focus #3b5631;
@define-color text #ffffff;
@define-color border #f4d9e1;
2023-10-25 20:45:26 +00:00
2023-05-05 13:35:28 +00:00
* {
2023-10-25 20:45:26 +00:00
font-family: FontAwesome, Roboto, Helvetica, Arial, sans-serif;
font-size: 13px;
2023-10-26 18:57:09 +00:00
border-radius: 24px;
min-height: 0;
2023-05-05 13:35:28 +00:00
}
window#waybar {
2023-10-26 18:57:09 +00:00
background-color: @bg;
color: @text;
2023-05-05 13:35:28 +00:00
}
window#waybar.hidden {
2023-10-25 20:45:26 +00:00
opacity: 0.2;
2023-05-05 13:35:28 +00:00
}
2023-10-25 20:45:26 +00:00
/*--- Workspaces ---*/
2023-10-26 18:57:09 +00:00
#workspaces{
border: solid 1px @border;
margin-top: 2px;
margin-bottom: 2px;
}
2023-05-05 13:35:28 +00:00
2023-10-26 18:57:09 +00:00
#workspaces button {
2023-10-25 20:45:26 +00:00
border: none;
2023-10-26 18:57:09 +00:00
border-radius: 24px;
2023-05-05 13:35:28 +00:00
2023-10-26 18:57:09 +00:00
2023-10-25 20:45:26 +00:00
padding: 0 5px;
background-color: transparent;
2023-10-26 18:57:09 +00:00
color: @text;
transition: all 0.3s ease-in-out;
2023-05-05 13:35:28 +00:00
}
#workspaces button:hover {
2023-10-26 18:57:09 +00:00
background: @fg;
2023-10-25 20:45:26 +00:00
/* Disble clicking effect */
box-shadow: inherit;
text-shadow: inherit;
2023-05-05 13:35:28 +00:00
}
#workspaces button.focused {
2023-10-26 18:57:09 +00:00
background-color: @focus;
2023-05-05 13:35:28 +00:00
}
#workspaces button.urgent {
2023-10-25 20:45:26 +00:00
background-color: #eb4d4b;
2023-05-05 13:35:28 +00:00
}
2023-10-25 20:45:26 +00:00
#workspaces button.active{
2023-10-26 18:57:09 +00:00
background-color: @focus;
transition: all 0.3s ease-in-out;
}
/*--- Groups ---*/
#audio, #system, #idle_inhibitor {
border: solid 1px @border;
border-radius: 24px;
margin-top: 2px;
margin-bottom: 2px;
2023-05-05 13:35:28 +00:00
}
2023-10-25 20:45:26 +00:00
/*--- Each module ---*/
#custom-playerctl,
#custom-swaync,
2023-05-05 13:35:28 +00:00
#clock,
#pulseaudio,
#wireplumber,
#custom-media,
#tray,
#mode,
2023-10-25 20:45:26 +00:00
#idle_inhibitor{
2023-10-26 18:57:09 +00:00
color: @text;
padding-left: 6px;
padding-right: 6px;
}
.modules-left{
padding-left: 3px;
}
.modules-right{
padding-right: 3px;
2023-05-05 13:35:28 +00:00
}
/* If workspaces is the leftmost module, omit left margin */
2023-10-26 18:57:09 +00:00
/*
2023-05-05 13:35:28 +00:00
.modules-left > widget:first-child > #workspaces {
margin-left: 0;
}
2023-10-26 18:57:09 +00:00
*/
2023-05-05 13:35:28 +00:00
/* If workspaces is the rightmost module, omit right margin */
2023-10-26 18:57:09 +00:00
/*
2023-05-05 13:35:28 +00:00
.modules-right > widget:last-child > #workspaces {
margin-right: 0;
}
2023-10-26 18:57:09 +00:00
*/
2023-05-05 13:35:28 +00:00
2023-10-26 18:57:09 +00:00
/*
2023-10-25 20:45:26 +00:00
#window,
#workspaces {
margin: 0 4px;
2023-05-05 13:35:28 +00:00
}
2023-10-26 18:57:09 +00:00
*/
2023-10-25 20:45:26 +00:00
/* Module style */
2023-05-05 13:35:28 +00:00
2023-10-26 18:57:09 +00:00
/*
2023-10-25 20:45:26 +00:00
#clock {
background-color: #64727D;
2023-05-05 13:35:28 +00:00
}
label:focus {
background-color: #000000;
}
#pulseaudio {
background-color: #f1c40f;
color: #000000;
}
#pulseaudio.muted {
background-color: #90b1b1;
color: #2a5c45;
}
#wireplumber {
background-color: #fff0f5;
color: #000000;
}
#wireplumber.muted {
background-color: #f53c3c;
}
#custom-media {
background-color: #66cc99;
color: #2a5c45;
min-width: 100px;
}
#custom-media.custom-spotify {
background-color: #66cc99;
}
#tray {
background-color: #2980b9;
}
#tray > .needs-attention {
-gtk-icon-effect: highlight;
background-color: #eb4d4b;
}
#idle_inhibitor {
background-color: #2d3436;
}
#idle_inhibitor.activated {
background-color: #ecf0f1;
color: #2d3436;
}
#custom-playerctl {
padding: 0 10px;
2023-10-26 18:57:09 +00:00
background-color: #1DB954;
}
*/
#tray > .passive {
-gtk-icon-effect: dim;
2023-05-05 13:35:28 +00:00
}
2023-10-26 18:57:09 +00:00
2023-05-05 13:35:28 +00:00
#custom-swaync {
font-family: "NotoSansMono Nerd Font";
padding: 0 10px;
2023-10-26 18:57:09 +00:00
color: @text;
2023-05-05 13:35:28 +00:00
font-size: 17px;
}