Merge pull request #204 from floli/fix-fswidget-readme

Fix fs-widget README.
This commit is contained in:
streetturtle 2020-11-01 14:32:33 -05:00 committed by GitHub
commit ef9292d082
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 5 deletions

View File

@ -1,20 +1,20 @@
# Storage Widget
# Filesystem Widget
This widget shows disk usage. 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 `storage_widgets`
multiple mounts displayed on the wibar simply define multiple `fs_widgets`
with different mounts as arguments.
```lua
local storage_widget = require("awesome-wm-widgets.storage-widget.storage-widget")
local fs_widget = require("awesome-wm-widgets.fs-widget.fs-widget")
...
s.mywibox:setup {
s.mytasklist, -- Middle widget
{ -- Right widgets
storage_widget(), --default
fs_widget(), --default
wibox.widget.textbox(':'),
storage_widget({ mounts = { '/', '/mnt/musicj' } }), -- multiple mounts
fs_widget({ mounts = { '/', '/mnt/musicj' } }), -- multiple mounts
...
```