fixes waybar, adds cursors, fixes some hyprland stuff

This commit is contained in:
2026-02-15 21:03:00 +01:00
parent 73d6ca5bec
commit 5e55b51220
12 changed files with 247 additions and 86 deletions

View File

@@ -4,7 +4,7 @@
// -------------------------------------------------------------------------
"layer": "top",
"swap-icon-label": true,
"position": "top",
"height": 36,
@@ -407,10 +407,11 @@
"menu": "on-click",
"menu-file": "~/.config/waybar/modules/power_menu.xml",
"menu-actions": {
"shutdown": "shutdown",
"reboot": "reboot",
"suspend": "systemctl suspend",
"hibernate": "systemctl hibernate",
"logout": "hyprctl dispatch exit",
"shutdown": "shutdown",
"reboot": "reboot",
},
},

View File

@@ -13,7 +13,12 @@
<property name="label">Hibernate</property>
</object>
</child>
<child>
<child>
<object class="GtkMenuItem" id="logout">
<property name="label">Logout</property>
</object>
</child>
<child>
<object class="GtkMenuItem" id="shutdown">
<property name="label">Shutdown</property>
</object>
@@ -28,4 +33,3 @@
</child>
</object>
</interface>

View File

@@ -8,12 +8,12 @@
</child>
<child>
<object class="GtkMenuItem" id="balanced">
<property name="label">balanced (current)</property>
<property name="label">balanced</property>
</object>
</child>
<child>
<object class="GtkMenuItem" id="power-saver">
<property name="label">power-saver</property>
<property name="label">power-saver (current)</property>
</object>
</child>
</object>

View File

@@ -234,11 +234,12 @@ window#waybar.empty #window {
}
menu {
border-radius: 15px;
background: rgba(22, 19, 32, 0);
border-radius: 5px;
border: 0px;
background: rgba(22, 19, 32, 0.5);
color: #b5e8e0;
padding: 5px;
}
menuitem {
border-radius: 15px;
border-radius: 5px;
}