This commit is contained in:
2025-08-17 10:50:33 +02:00
parent 9ff830ccff
commit a63d9bf016
10 changed files with 104 additions and 20 deletions

View File

@@ -20,7 +20,7 @@
],
"tray": {
// "icon-size": 21,
"spacing": 10,
"spacing": 10
// "icons": {
// "blueman": "bluetooth",
// "TelegramDesktop": "$HOME/.local/share/icons/hicolor/16x16/apps/telegram.png"
@@ -92,6 +92,7 @@
"menu-actions": {
"shutdown": "shutdown -P now",
"reboot": "reboot",
"lock": "hyprlock",
"suspend": "systemctl suspend",
"hibernate": "systemctl hibernate"
}

View File

@@ -14,6 +14,14 @@
<child>
<object class="GtkSeparatorMenuItem" id="delimiter1"/>
</child>
<child>
<object class="GtkMenuItem" id="lock">
<property name="label">Lock</property>
</object>
</child>
<child>
<object class="GtkSeparatorMenuItem" id="delimiter2"/>
</child>
<child>
<object class="GtkMenuItem" id="suspend">
<property name="label">Suspend</property>
@@ -25,4 +33,4 @@
</object>
</child>
</object>
</interface>
</interface>

View File

@@ -88,6 +88,10 @@ button:hover {
background-color: rgba(76, 90, 102, 1);
}
#battery {
background-color: rgba(76, 90, 102, 1);
}
#cpu {
background-color: rgba(76, 90, 102, 1);
}