Big changes concerning color scheme (switching to seventy nine), reorganized monitors config files, new notification daemon and quick settings panel, new scripts and other minor changes
This commit is contained in:
parent
746fa5a835
commit
602e3f2f97
28 changed files with 1034 additions and 60 deletions
|
|
@ -1,8 +1,8 @@
|
|||
@import "colors.css";
|
||||
@define-color active @accentColor;
|
||||
@define-color active @foreground;
|
||||
|
||||
* {
|
||||
font-size: 16px;
|
||||
font-size: 17px;
|
||||
font-family: "JetBrainsMono Nerd Font,JetBrainsMono NF";
|
||||
min-width: 8px;
|
||||
min-height: 0px;
|
||||
|
|
@ -21,7 +21,7 @@ window#waybar {
|
|||
border: 1px solid alpha(@active, 0.2);
|
||||
background: @background;
|
||||
background: alpha(@background, 0.7);
|
||||
color: lighter(@active);
|
||||
color: @foreground;
|
||||
}
|
||||
|
||||
menu,
|
||||
|
|
@ -31,13 +31,13 @@ tooltip {
|
|||
border: 1px solid @active;
|
||||
background: @background;
|
||||
|
||||
color: lighter(@active);
|
||||
color: @foreground;
|
||||
}
|
||||
|
||||
menu label,
|
||||
tooltip label {
|
||||
font-size: 14px;
|
||||
color: lighter(@active);
|
||||
color: @foreground;
|
||||
}
|
||||
|
||||
#submap,
|
||||
|
|
@ -53,7 +53,7 @@ tooltip label {
|
|||
margin: 0px 6px 4px 6px;
|
||||
border-radius: 4px;
|
||||
background: alpha(@background, 0);
|
||||
color: lighter(@active);
|
||||
color: @foreground;
|
||||
}
|
||||
|
||||
.modules-left {
|
||||
|
|
@ -62,7 +62,7 @@ tooltip label {
|
|||
margin: 6px 5px 6px 5px; /* Testing with 5 pixels on left/right */
|
||||
border-radius: 4px;
|
||||
background: alpha(@background, 0.5);
|
||||
color: lighter(@active);
|
||||
color: @foreground;
|
||||
border: 1px solid alpha(@active, 0.1);
|
||||
}
|
||||
|
||||
|
|
@ -172,7 +172,7 @@ tooltip label {
|
|||
#workspaces button.active {
|
||||
padding: 2px 0px;
|
||||
background: alpha(@active, 0.4);
|
||||
color: lighter(@active);
|
||||
color: @foreground;
|
||||
border-radius: 2px;
|
||||
}
|
||||
|
||||
|
|
@ -205,26 +205,47 @@ tooltip label {
|
|||
padding-top: 2px;
|
||||
}
|
||||
|
||||
#battery {
|
||||
border-radius: 8px;
|
||||
padding: 4px 0px;
|
||||
#group-battery {
|
||||
/* border-radius: 8px; */
|
||||
/* padding: 4px 0px; */
|
||||
margin: 4px 2px 4px 2px;
|
||||
}
|
||||
|
||||
#battery {
|
||||
font-size: 1.5rem;
|
||||
border-radius: 3px;
|
||||
padding: 4px 0px;
|
||||
margin: 0 0px;
|
||||
}
|
||||
|
||||
#battery.charging {
|
||||
color: @charging;
|
||||
}
|
||||
|
||||
#battery.discharging.warning {
|
||||
animation-name: blink-yellow;
|
||||
background-color: #cf9022;
|
||||
/*animation-name: blink-yellow;
|
||||
animation-duration: 1s;
|
||||
animation-timing-function: linear;
|
||||
animation-iteration-count: infinite;
|
||||
animation-direction: alternate;
|
||||
animation-direction: alternate; */
|
||||
}
|
||||
|
||||
#battery.discharging.critical {
|
||||
animation-name: blink-red;
|
||||
background-color: #c64d4f;
|
||||
/*animation-name: blink-red;
|
||||
animation-duration: 1s;
|
||||
animation-timing-function: linear;
|
||||
animation-iteration-count: infinite;
|
||||
animation-direction: alternate;
|
||||
animation-direction: alternate;*/
|
||||
}
|
||||
|
||||
#custom-battery_percentage {
|
||||
font-size: 1.1rem;
|
||||
border-radius: 100px;
|
||||
/* padding: 0 2px; */
|
||||
margin: 1px 0;
|
||||
/* margin: 4px 2px 4px 2px; */
|
||||
}
|
||||
|
||||
#clock {
|
||||
|
|
@ -234,7 +255,7 @@ tooltip label {
|
|||
|
||||
#pulseaudio.mic {
|
||||
border-radius: 4px;
|
||||
color: lighter(@active);
|
||||
color: @foreground;
|
||||
padding-left: 2px;
|
||||
}
|
||||
|
||||
|
|
@ -256,7 +277,7 @@ tooltip label {
|
|||
#backlight-slider highlight,
|
||||
#pulseaudio-slider highlight {
|
||||
border-radius: 8px;
|
||||
background-color: lighter(@active);
|
||||
background-color: @foreground;
|
||||
}
|
||||
|
||||
#bluetooth.discoverable,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue