updated monocle bar and added wayshell framework with some modules.

This commit is contained in:
2026-06-27 17:35:39 +02:00
parent 79b45ab123
commit 66065960cf
43 changed files with 2163 additions and 97 deletions
+49
View File
@@ -0,0 +1,49 @@
@import "./colors.css";
window#waybar {
background: transparent;
box-shadow: none;
border: none;
}
#custom-volume-up,
#custom-volume-bar,
#custom-volume-down,
#custom-volume-icon {
background-color: @surface_container;
color: @primary;
font-size: 12px;
}
#custom-volume-up,
#custom-volume-bar,
#custom-volume-down {
margin: 0;
border-color: @primary;
border-style: solid;
}
#custom-volume-up {
padding: 4px 6px;
border-width: 2px 2px 0 2px;
border-radius: 10px 10px 0 0;
}
#custom-volume-bar {
padding: 0 2px;
border-width: 0 2px;
border-radius: 0;
}
#custom-volume-down {
padding: 4px 6px;
border-width: 0 2px 2px 2px;
border-radius: 0 0 10px 10px;
}
#custom-volume-icon {
padding: 4px 6px;
border: 2px solid @primary;
border-radius: 10px;
margin-top: 6px;
}