2017-09-02 06:33:39 +02:00
|
|
|
# Brightness widget
|
|
|
|
|
2019-02-11 14:40:32 +01:00
|
|
|
This widget represents current brightness level: ![Brightness widget](./br-wid-1.png)
|
2017-09-02 06:33:39 +02:00
|
|
|
|
|
|
|
## Installation
|
|
|
|
|
2019-02-11 14:40:32 +01:00
|
|
|
First you need to get the current brightness level. There are two options:
|
2017-09-02 06:33:39 +02:00
|
|
|
|
|
|
|
- using `xbacklight` command (depending on your video card (I guess) it may or may not work)
|
|
|
|
|
2017-09-02 06:46:26 +02:00
|
|
|
To check if it works install xbackligth and check if it works:
|
2017-09-02 06:33:39 +02:00
|
|
|
|
2017-09-02 06:46:26 +02:00
|
|
|
```bash
|
|
|
|
sudo apt-get install xbacklight
|
2018-01-02 11:43:32 +01:00
|
|
|
xbacklight -get
|
2017-09-02 06:46:26 +02:00
|
|
|
```
|
2017-09-02 06:33:39 +02:00
|
|
|
|
2017-09-02 06:46:26 +02:00
|
|
|
If there is no output it means that it doesn't work, but there is a second option:
|
2017-09-02 06:33:39 +02:00
|
|
|
|
|
|
|
- using `light` command
|
|
|
|
|
2017-09-02 06:46:26 +02:00
|
|
|
Install it from this git repo: [github.com/haikarainen/light](https://github.com/haikarainen/light) and check if it works but running
|
|
|
|
|
|
|
|
```bash
|
|
|
|
git clone https://github.com/haikarainen/light.git && \
|
|
|
|
cd ./light && \
|
|
|
|
sudo make && sudo make install \
|
|
|
|
light -G
|
|
|
|
49.18
|
|
|
|
```
|
2019-02-11 14:40:32 +01:00
|
|
|
|
2018-01-02 11:43:32 +01:00
|
|
|
Depending on the chosen option change `GET_BRIGHTNESS_CMD` variable in **brightness.lua**.
|
2017-09-02 06:33:39 +02:00
|
|
|
|
2019-02-11 14:40:32 +01:00
|
|
|
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
|
|
|
|
s.mytasklist, -- Middle widget
|
|
|
|
{ -- Right widgets
|
|
|
|
layout = wibox.layout.fixed.horizontal,
|
|
|
|
...
|
|
|
|
brightness_widget,
|
|
|
|
...
|
|
|
|
```
|
|
|
|
|
2017-10-21 03:52:25 +02:00
|
|
|
## Controls
|
|
|
|
|
2017-09-02 06:33:39 +02:00
|
|
|
In order to change brightness by shortcuts you can add them to the `globalkeys` table in the **rc.lua**:
|
|
|
|
|
|
|
|
```lua
|
2017-09-06 16:15:11 +02:00
|
|
|
awful.key({ modkey }, ";", function () awful.spawn("light -A 5") end, {description = "increase brightness", group = "custom"}),
|
|
|
|
awful.key({ modkey, "Shift"}, ";", function () awful.spawn("light -U 5") end, {description = "decrease brightness", group = "custom"}),
|
2017-09-02 06:46:26 +02:00
|
|
|
```
|
2017-09-06 16:15:11 +02:00
|
|
|
On laptop you can use `XF86MonBrightnessUp` and `XF86MonBrightnessDown` keys.
|