updated cpu widget page
This commit is contained in:
parent
42fe2bf2a5
commit
f683c8e5a1
|
@ -52,7 +52,7 @@ s.mytasklist, -- Middle widget
|
|||
--[[or customized]]
|
||||
batteryarc_widget({
|
||||
show_current_level = true,
|
||||
arc_thickness = '1',
|
||||
arc_thickness = 1,
|
||||
}),
|
||||
}
|
||||
...
|
||||
|
|
|
@ -0,0 +1,27 @@
|
|||
---
|
||||
layout: page
|
||||
---
|
||||
# Storage 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`
|
||||
with different mounts as arguments.
|
||||
|
||||
|
||||
```lua
|
||||
local storage_widget = require("awesome-wm-widgets.storage-widget.storage-widget")
|
||||
...
|
||||
s.mywibox:setup {
|
||||
s.mytasklist, -- Middle widget
|
||||
{ -- Right widgets
|
||||
storage_widget(), --default
|
||||
wibox.widget.textbox(':'),
|
||||
storage_widget({ mounts = { '/', '/mnt/musicj' } }), -- multiple mounts
|
||||
...
|
||||
|
||||
```
|
||||
|
||||
## Installation
|
||||
|
||||
Please refer to the [installation](../awesome-wm-widgets/assets/img/screenshots/storage-widgetttps://github.com/streetturtle/awesome-wm-widgets#installation) section of the repo.
|
Binary file not shown.
Before Width: | Height: | Size: 4.8 KiB After Width: | Height: | Size: 255 KiB |
Binary file not shown.
After Width: | Height: | Size: 102 KiB |
Loading…
Reference in New Issue