diff options
author | Pavel Makhov <pmakhov@theoctavegroup.com> | 2019-07-03 09:41:09 -0400 |
---|---|---|
committer | Pavel Makhov <pmakhov@theoctavegroup.com> | 2019-07-03 09:41:09 -0400 |
commit | 3d84ce64bd27920a751206115ee0a6bca8eb95c9 (patch) | |
tree | df88508016562e00c31509671d2c256ac789ecc3 /brightnessarc-widget/README.md | |
parent | f77df958104badf284061603e4e945b32ac6aeb6 (diff) | |
parent | 74f7e583de5d16c0a32af1e148e7df5ad6887dbd (diff) |
Merge branch '74-externalize-config' of github.com:streetturtle/awesome-wm-widgets into 74-externalize-config
Diffstat (limited to 'brightnessarc-widget/README.md')
-rw-r--r-- | brightnessarc-widget/README.md | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/brightnessarc-widget/README.md b/brightnessarc-widget/README.md index d122d3a..e63f0dd 100644 --- a/brightnessarc-widget/README.md +++ b/brightnessarc-widget/README.md @@ -11,6 +11,7 @@ It is possible to customize widget by providing a table with all or some of the | `get_brightness_cmd` | `light -G` | Get current screen brightness | | `inc_brightness_cmd` | `light -A 5` | Increase brightness | | `dec_brightness_cmd` | `light -U 5`| Decrease brightness | +| `color` | `beautiful.fg_color` | Color of the arc | | `path_to_icon` | `/usr/share/icons/Arc/status/symbolic/display-brightness-symbolic.svg` | Path to the icon | ### Example: @@ -20,6 +21,7 @@ brightnessarc_widget({ get_brightness_cmd = 'xbacklight -get', inc_brightness_cmd = 'xbacklight -inc 5', dec_brightness_cmd = 'xbacklight -dec 5' + color = '/usr/share/icons/Arc/status/symbolic/brightness-display-symbolic.svg' }) ``` @@ -60,7 +62,7 @@ git clone https://github.com/streetturtle/awesome-wm-widgets.git ~/.config/aweso Require widget at the beginning of **rc.lua**: ```lua -local brightness_widget = require("awesome-wm-widgets.brightness-widget.brightness") +local brightnessarc_widget = require("awesome-wm-widgets.brightnessarc-widget.brightnessarc") ``` Add widget to the tasklist: |