feat(waybar): add some tooltip-formats

This commit is contained in:
Price Hiller 2022-08-08 19:53:56 -05:00
parent 0e5188741b
commit ee21dec17a

View File

@ -53,7 +53,8 @@
}, },
"clock": { "clock": {
"format": " {:%a %b %d %I:%M %p}", "format": " {:%a %b %d %I:%M %p}",
"tooltip": false, "tooltip": true,
"tooltip-format": "<big>{:%Y %B \t week: %V }</big>\n<tt>{calendar}</tt>",
"min-length": 18 "min-length": 18
}, },
"custom/lock": { "custom/lock": {
@ -123,17 +124,17 @@
} }
}, },
"memory": { "memory": {
"tooltip": false,
"format": " {percentage}%", "format": " {percentage}%",
"tooltip-format": "{used:0.1f}GB/{total:0.1f}GB ",
"states": { "states": {
"critical": 90 "critical": 90
}, },
"min-length": 5 "min-length": 5
}, },
"disk": { "disk": {
"tooltip": false,
"path": "/", "path": "/",
"interval": 60, "interval": 60,
"tooltip-format": "{used} used out of {total} ({percentage_used}%)",
"min-length": 5, "min-length": 5,
"format": " {percentage_used}%", "format": " {percentage_used}%",
"states": { "states": {