summaryrefslogtreecommitdiff
path: root/storage-widget/README.md
diff options
context:
space:
mode:
authorstreetturtle <streetturtle@gmail.com>2020-02-22 13:50:30 -0500
committerstreetturtle <streetturtle@gmail.com>2020-02-22 13:50:30 -0500
commit2e51c26322fd124d56e79590980eda8c1baeb1b6 (patch)
tree813c4f02117f80a8a0f5b3028f52680595b91ea6 /storage-widget/README.md
parentc2a7908254ac242006bb93782ea9bcc88d1aa0d7 (diff)
[fs-widget] rename storage to fs
Diffstat (limited to 'storage-widget/README.md')
-rw-r--r--storage-widget/README.md24
1 files changed, 0 insertions, 24 deletions
diff --git a/storage-widget/README.md b/storage-widget/README.md
deleted file mode 100644
index 48d2ffe..0000000
--- a/storage-widget/README.md
+++ /dev/null
@@ -1,24 +0,0 @@
-# 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](https://github.com/streetturtle/awesome-wm-widgets#installation) section of the repo.