eww osd and battery warning

This commit is contained in:
2024-12-29 21:17:59 +01:00
parent f17dac3339
commit b54468d17a
15 changed files with 406 additions and 19 deletions

120
.config/eww/eww.scss Normal file
View File

@@ -0,0 +1,120 @@
@import 'colors.scss';
.batteryLow {
border: 0.3em solid $primary;
border-radius: 2.5em;
color: $primary;
padding: 0;
label {
border-radius: 2.3em;
background-color: $background;
}
&:hover {
border-color: $tertiary;
color: $tertiary;
}
}
.batteryCritical {
border: 0.3em solid $primary;
border-radius: 2.5em;
color: $primary;
padding: 0;
label {
border-radius: 2.3em;
background-color: $background;
}
&:hover {
border-color: $tertiary;
color: $tertiary;
}
}
.volumeUp {
border: 0.3em solid $primary;
border-radius: 2.5em;
color: $primary;
padding: 0;
label {
border-radius: 2.3em;
background-color: $background;
}
&:hover {
border-color: $tertiary;
color: $tertiary;
}
}
.volumeDown {
border: 0.3em solid $primary;
border-radius: 2.5em;
color: $primary;
padding: 0;
label {
border-radius: 2.3em;
background-color: $background;
}
&:hover {
border-color: $tertiary;
color: $tertiary;
}
}
.volumeToggle {
border: 0.3em solid $primary;
border-radius: 2.5em;
color: $primary;
padding: 0;
label {
border-radius: 2.3em;
background-color: $background;
}
&:hover {
border-color: $tertiary;
color: $tertiary;
}
}
.brightnessUp {
border: 0.3em solid $primary;
border-radius: 2.5em;
color: $primary;
padding: 0;
label {
border-radius: 2.3em;
background-color: $background;
}
&:hover {
border-color: $tertiary;
color: $tertiary;
}
}
.brightnessDown {
border: 0.3em solid $primary;
border-radius: 2.5em;
color: $primary;
padding: 0;
label {
border-radius: 2.3em;
background-color: $background;
}
&:hover {
border-color: $tertiary;
color: $tertiary;
}
}