Added missing files. Added snaphot before update.

This commit is contained in:
2024-11-26 21:39:54 +01:00
parent a3c6e2e8e5
commit b6ff30b80c
7 changed files with 129 additions and 26 deletions

View File

@@ -63,7 +63,7 @@
"cpu": {
"interval": 5,
"format": "CPU:{usage:02}%", // Icon: microchip
"format": "CPU:{usage:02}%",
"states": {
"warning": 70,
"critical": 90
@@ -72,7 +72,7 @@
"memory": {
"interval": 10,
"format": "RAM:{used:0.1f}G/{total:0.1f}G", // Icon: memory
"format": "RAM:{used:0.1f}G/{total:0.1f}G",
"states": {
"warning": 70,
"critical": 90
@@ -83,9 +83,10 @@
"network": {
"interval": 5,
"on-click": "networkmanager_dmenu",
"format-wifi": "WIFI:{essid} ({signalStrength}%)", // Icon: wifi
"format-ethernet": "ETH:{ipaddr}", // Icon: ethernet
"format-disconnected": "ETH Disconnected",
"format-wifi": "ETH:{ipaddr} {essid} ({signalStrength}%)",
"format-ethernet": "ETH:{ipaddr}",
"format-disconnected": "ETH:Disconnected",
"format-linked": "ETH:Pending",
"tooltip-format": "{ifname}: {ipaddr}"
},

View File

@@ -108,10 +108,18 @@
color: #afd787;
}
#network.disconnected {
#network.linked {
color: #d7af5f;
}
#network.disconnected {
color: #d75400;
}
#network.disabled {
color: #d75400;
}
#temperature {
color: #afd787;
}