Scroll to navigation

waybar-disk(5) File Formats Manual waybar-disk(5)

NAME

waybar - disk module

DESCRIPTION

The disk module displays the current disk space used.

CONFIGURATION

Addressed by disk

path:
typeof: string
default: "/"
Any path residing in the filesystem or mountpoint for which the information should be displayed.

interval:
typeof: integer
default: 30
The interval in which the information gets polled.

format:
typeof: string
default: "{percentage_used}%"
The format, how information should be displayed.

rotate:
typeof: integer
Positive value to rotate the text label.

max-length:
typeof: integer
The maximum length in character the module should display.

on-click:
typeof: string
Command to execute when clicked on the module.

on-click-right:
typeof: string
Command to execute when you right clicked on the module.

on-scroll-up:
typeof: string
Command to execute when scrolling up on the module.

on-scroll-down:
typeof: string
Command to execute when scrolling down on the module.

smooth-scrolling-threshold:
typeof: double
Threshold to be used when scrolling.

tooltip:
typeof: bool
default: true
Option to disable tooltip on hover.

tooltip-format:
typeof: string
default: "{used} out of {total} used ({percentage_used}%)"
The format of the information displayed in the tooltip.

FORMAT REPLACEMENTS

{percentage_used}: Percentage of disk in use.

{percentage_free}: Percentage of free disk space

{total}: Total amount of space on the disk, partition or mountpoint.

{used}: Amount of used disk space.

{free}: Amount of available disk space for normal users.

{path}: The path specified in the configuration.

EXAMPLES

"disk": {
	"interval": 30,
	"format": "{percentage_free}% free on {path}",
}

STYLE

#disk
2019-12-31