diff options
author | Pavel Makhov <pmakhov@touchtunes.com> | 2019-02-13 11:44:22 -0500 |
---|---|---|
committer | Pavel Makhov <pmakhov@touchtunes.com> | 2019-02-13 11:44:22 -0500 |
commit | 29a9761c4d0f851b75863c59854a17ea5a6d8e43 (patch) | |
tree | 46403cf2fb3e885a2c6cc99d88eb64b8ad684573 /brightness-widget/README.md | |
parent | b1756027ed46ff1232845504a877dde38562f6e2 (diff) | |
parent | e972b55c0c3b18409adec1a6655bbdc4dcddbb53 (diff) |
Merge branch 'master' of github.com:streetturtle/awesome-wm-widgets
Diffstat (limited to 'brightness-widget/README.md')
-rw-r--r-- | brightness-widget/README.md | 35 |
1 files changed, 22 insertions, 13 deletions
diff --git a/brightness-widget/README.md b/brightness-widget/README.md index fa123c1..5d592b6 100644 --- a/brightness-widget/README.md +++ b/brightness-widget/README.md @@ -1,12 +1,10 @@ # Brightness widget -![Brightness widget](./br-wid-1.png) - -This widget represents current brightness level. +This widget represents current brightness level: ![Brightness widget](./br-wid-1.png) ## Installation -Firstly you need to get the current brightness level. There are two options: +First you need to get the current brightness level. There are two options: - using `xbacklight` command (depending on your video card (I guess) it may or may not work) @@ -30,19 +28,30 @@ Firstly you need to get the current brightness level. There are two options: light -G 49.18 ``` + Depending on the chosen option change `GET_BRIGHTNESS_CMD` variable in **brightness.lua**. -Then in **rc.lua** add the import on top of the file and then add widget to the wibox: +Then clone this repo under **~/.config/awesome/**: + +```bash +git clone https://github.com/streetturtle/awesome-wm-widgets.git ~/.config/awesome/ +``` + +Require widget at the beginning of **rc.lua**: + +```lua +local brightness_widget = require("awesome-wm-widgets.brightness-widget.brightness") +``` + +Add widget to the tasklist: ```lua -require("awesome-wm-widgets.brightness-widget.brightness") -... --- Add widgets to the wibox -s.mywibox:setup { -... -{ -- Right widgets -... -brightness_widget +s.mytasklist, -- Middle widget + { -- Right widgets + layout = wibox.layout.fixed.horizontal, + ... + brightness_widget, + ... ``` ## Controls |