AutoYADM commit: 2025-01-13 23:25:04
This commit is contained in:
parent
822bcdc902
commit
1e42c9bcf4
2 changed files with 113 additions and 38 deletions
|
@ -12,7 +12,6 @@
|
||||||
border: none;
|
border: none;
|
||||||
border-radius: 0;
|
border-radius: 0;
|
||||||
min-height: 0;
|
min-height: 0;
|
||||||
/* font-family: "iosevka nerd font"; */
|
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
|
@ -20,10 +19,13 @@
|
||||||
|
|
||||||
window#waybar {
|
window#waybar {
|
||||||
background: @bg;
|
background: @bg;
|
||||||
|
padding: 0;
|
||||||
|
margin: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
tooltip {
|
tooltip {
|
||||||
background-color: @bg;
|
background-color: @bg;
|
||||||
|
padding: 4px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#clock,
|
#clock,
|
||||||
|
@ -33,67 +35,42 @@ tooltip {
|
||||||
#battery,
|
#battery,
|
||||||
#network,
|
#network,
|
||||||
#pulseaudio {
|
#pulseaudio {
|
||||||
margin: 6px 6px 6px 0px;
|
margin: 0;
|
||||||
padding: 2px 8px;
|
padding: 2px 6px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#workspaces {
|
#workspaces {
|
||||||
background-color: @bg;
|
background-color: @bg;
|
||||||
margin: 6px 0px 6px 6px;
|
margin: 0;
|
||||||
/* border: 2px solid #434a4c; */
|
padding: 2px 4px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#workspaces button {
|
#workspaces button {
|
||||||
all: initial;
|
all: initial;
|
||||||
min-width: 0;
|
min-width: 0;
|
||||||
box-shadow: inset 0 -3px transparent;
|
box-shadow: none;
|
||||||
padding: 2px 4px;
|
padding: 2px 4px;
|
||||||
color: @fg;
|
color: @fg;
|
||||||
}
|
}
|
||||||
|
|
||||||
#workspaces button.focused {
|
#workspaces button.focused {
|
||||||
/* color: #ddc7a1; */
|
border: none;
|
||||||
border: 1px solid @red_ember;
|
box-shadow: inset 0 -2px @red_ember;
|
||||||
}
|
}
|
||||||
|
|
||||||
#workspaces button.urgent {
|
#workspaces button.urgent {
|
||||||
border: 1px solid @orange_glow;
|
border: none;
|
||||||
|
box-shadow: inset 0 -2px @orange_glow;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* #clock { */
|
|
||||||
/* background-color: #303536; */
|
|
||||||
/* border: 2px solid #434a4c; */
|
|
||||||
/* color: #d4be98; */
|
|
||||||
/* } */
|
|
||||||
|
|
||||||
#tray {
|
#tray {
|
||||||
border: 1px solid @grey;
|
border: none;
|
||||||
}
|
|
||||||
|
|
||||||
#battery {
|
|
||||||
/* background-color: #a9b665; */
|
|
||||||
/* border: 2px solid #c7ab7a; */
|
|
||||||
/* color: #6c782e; */
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#battery,
|
||||||
#cpu,
|
#cpu,
|
||||||
#memory,
|
#memory,
|
||||||
#network,
|
#network,
|
||||||
#pulseaudio {
|
#pulseaudio {
|
||||||
/* background-color: #ddc7a1; */
|
border: none;
|
||||||
/* border: 2px solid #c7ab7a; */
|
|
||||||
/* color: #1d2021; */
|
|
||||||
}
|
|
||||||
|
|
||||||
#cpu.critical,
|
|
||||||
#memory.critical {
|
|
||||||
color: @red_ember;
|
|
||||||
}
|
|
||||||
|
|
||||||
#battery.warning,
|
|
||||||
#battery.critical,
|
|
||||||
#battery.urgent {
|
|
||||||
/* background-color: #ddc7a1; */
|
|
||||||
/* border: 2px solid #c7ab7a; */
|
|
||||||
color: @red_ember;
|
|
||||||
}
|
}
|
||||||
|
|
98
.config/waybar/style.css.bak
Normal file
98
.config/waybar/style.css.bak
Normal file
|
@ -0,0 +1,98 @@
|
||||||
|
@define-color bg #121212;
|
||||||
|
@define-color fg #d5d5d5;
|
||||||
|
@define-color grey #949494;
|
||||||
|
@define-color red_ember #B14242;
|
||||||
|
@define-color red_glowing #DF6464;
|
||||||
|
@define-color orange_glow #D87C4A;
|
||||||
|
@define-color orange_blaze #C4693D;
|
||||||
|
@define-color orange_smolder #E49A44;
|
||||||
|
@define-color green #629c7d;
|
||||||
|
|
||||||
|
* {
|
||||||
|
border: none;
|
||||||
|
border-radius: 0;
|
||||||
|
min-height: 0;
|
||||||
|
font-weight: 500;
|
||||||
|
font-size: 14px;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
window#waybar {
|
||||||
|
background: @bg;
|
||||||
|
}
|
||||||
|
|
||||||
|
tooltip {
|
||||||
|
background-color: @bg;
|
||||||
|
}
|
||||||
|
|
||||||
|
#clock,
|
||||||
|
#tray,
|
||||||
|
#cpu,
|
||||||
|
#memory,
|
||||||
|
#battery,
|
||||||
|
#network,
|
||||||
|
#pulseaudio {
|
||||||
|
margin: 6px 6px 6px 0px;
|
||||||
|
padding: 2px 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#workspaces {
|
||||||
|
background-color: @bg;
|
||||||
|
margin: 6px 0px 6px 6px;
|
||||||
|
/* border: 2px solid #434a4c; */
|
||||||
|
}
|
||||||
|
|
||||||
|
#workspaces button {
|
||||||
|
all: initial;
|
||||||
|
min-width: 0;
|
||||||
|
box-shadow: inset 0 -3px transparent;
|
||||||
|
padding: 2px 4px;
|
||||||
|
color: @fg;
|
||||||
|
}
|
||||||
|
|
||||||
|
#workspaces button.focused {
|
||||||
|
/* color: #ddc7a1; */
|
||||||
|
border: 1px solid @red_ember;
|
||||||
|
}
|
||||||
|
|
||||||
|
#workspaces button.urgent {
|
||||||
|
border: 1px solid @orange_glow;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* #clock { */
|
||||||
|
/* background-color: #303536; */
|
||||||
|
/* border: 2px solid #434a4c; */
|
||||||
|
/* color: #d4be98; */
|
||||||
|
/* } */
|
||||||
|
|
||||||
|
#tray {
|
||||||
|
border: 1px solid @grey;
|
||||||
|
}
|
||||||
|
|
||||||
|
#battery {
|
||||||
|
/* background-color: #a9b665; */
|
||||||
|
/* border: 2px solid #c7ab7a; */
|
||||||
|
/* color: #6c782e; */
|
||||||
|
}
|
||||||
|
|
||||||
|
#cpu,
|
||||||
|
#memory,
|
||||||
|
#network,
|
||||||
|
#pulseaudio {
|
||||||
|
/* background-color: #ddc7a1; */
|
||||||
|
/* border: 2px solid #c7ab7a; */
|
||||||
|
/* color: #1d2021; */
|
||||||
|
}
|
||||||
|
|
||||||
|
#cpu.critical,
|
||||||
|
#memory.critical {
|
||||||
|
color: @red_ember;
|
||||||
|
}
|
||||||
|
|
||||||
|
#battery.warning,
|
||||||
|
#battery.critical,
|
||||||
|
#battery.urgent {
|
||||||
|
/* background-color: #ddc7a1; */
|
||||||
|
/* border: 2px solid #c7ab7a; */
|
||||||
|
color: @red_ember;
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue