update hyprland conf

This commit is contained in:
Johannes Knopp
2025-09-13 15:28:12 +02:00
parent ee6855f2ce
commit a95cd6feed
6 changed files with 220 additions and 239 deletions

View File

@ -13,7 +13,7 @@ window#waybar {
background: @glass;
color: @fg;
border-radius: 12px;
margin: 6px 8px;
/* margin: 6px 8px; */
border: none; /* ← removed border */
box-shadow: 0 10px 34px rgba(0,0,0,0.34);
-gtk-outline-radius: 12px;
@ -45,38 +45,29 @@ window#waybar {
padding: 0 4px;
}
/* --- PAGE BUTTONS --------------------------------------------------------- */
#custom-page1, #custom-page2, #custom-page3, #custom-page4, #custom-page5,
#custom-page6, #custom-page7, #custom-page8, #custom-page9, #custom-page10 {
/* --- group BUTTONS --------------------------------------------------------- */
#custom-group1, #custom-group2, #custom-group3, #custom-group4, #custom-group5,
#custom-group6, #custom-group7, #custom-group8, #custom-group9, #custom-group10 {
background: transparent;
min-width: 18px;
padding-left: 2px;
color: @fg_dim;
/* color: @fg_dim; */
}
/* Active page: glass chip, no border */
#custom-page1.active, #custom-page2.active, #custom-page3.active, #custom-page4.active,
#custom-page5.active, #custom-page6.active, #custom-page7.active, #custom-page8.active,
#custom-page9.active, #custom-page10.active {
/* Active group: glass chip, no border */
#custom-group1.active, #custom-group2.active, #custom-group3.active, #custom-group4.active,
#custom-group5.active, #custom-group6.active, #custom-group7.active, #custom-group8.active,
#custom-group9.active, #custom-group10.active {
background: @glass_strong;
border-radius: 8px;
color: @fg;
color: #a8557f;
box-shadow: inset 0 0 0 9999px rgba(255,255,255,0.015);
}
/* Occupied (not active): cyan glyph */
#custom-page1.occupied:not(.active), #custom-page2.occupied:not(.active),
#custom-page3.occupied:not(.active), #custom-page4.occupied:not(.active),
#custom-page5.occupied:not(.active), #custom-page6.occupied:not(.active),
#custom-page7.occupied:not(.active), #custom-page8.occupied:not(.active),
#custom-page9.occupied:not(.active), #custom-page10.occupied:not(.active) {
color: @accent2;
}
/* Hover feedback (very light) */
#custom-page1:hover, #custom-page2:hover, #custom-page3:hover, #custom-page4:hover,
#custom-page5:hover, #custom-page6:hover, #custom-page7:hover, #custom-page8:hover,
#custom-page9:hover, #custom-page10:hover {
#custom-group1:hover, #custom-group2:hover, #custom-group3:hover, #custom-group4:hover,
#custom-group5:hover, #custom-group6:hover, #custom-group7:hover, #custom-group8:hover,
#custom-group9:hover, #custom-group10:hover {
background: rgba(255,255,255,0.03);
border-radius: 8px;
}
@ -118,17 +109,3 @@ window#waybar {
/* text-align: center; */
}
.workspace.occupied {
color: #a855f7; /* purple for occupied workspaces */
border-color: #a855f7;
}
.workspace.focused {
background-color: rgba(168, 85, 247, 0.2); /* light purple background for focused */
color: #a855f7;
border-color: #a855f7;
}
.workspace:hover {
background-color: rgba(168, 85, 247, 0.1);
}