awesome-wm-widgets/fs-widget/README.md

30 lines
1.1 KiB
Markdown
Raw Normal View History

# Filesystem Widget
2020-02-17 01:44:03 +01:00
2020-11-30 15:31:44 +01:00
This widget shows file system disk space usage which is based on the `df` output. When clicked another widget appears with more detailed information. By default it monitors the "/" mount. It can be configured with a list of mounts to monitor though only the first will show in the wibar. To have multiple mounts displayed on the wibar simply define multiple `fs_widgets` with different mounts as arguments.
2020-02-17 01:44:03 +01:00
2020-11-30 15:31:44 +01:00
![](./screenshot.png)
## Cusomizations
It is possible to customize widget by providing a table with all or some of the following config parameters:
| Name | Default | Description |
|---|---|---|
| `mounts` | `{'/'}` | Table with mounts to monitor, check the output from a `df` command for available options (column 'Mounted on') |
| `timeout` | 60 | How often in seconds the widget refreshes |
## Installation
Clone/download repo and use the widget in **rc.lua**:
2020-02-17 01:44:03 +01:00
```lua
local fs_widget = require("awesome-wm-widgets.fs-widget.fs-widget")
2020-02-17 01:44:03 +01:00
...
s.mywibox:setup {
s.mytasklist, -- Middle widget
{ -- Right widgets
fs_widget(), --default
2020-11-30 15:31:44 +01:00
fs_widget({ mounts = { '/', '/mnt/music' } }), -- multiple mounts
2020-02-17 01:44:03 +01:00
...
```