Update README.md
This commit is contained in:
parent
78fa8e629d
commit
aa09ea4686
15
README.md
15
README.md
|
@ -12,7 +12,20 @@ From left to right:
|
||||||
- [volume-widget](https://github.com/streetturtle/AwesomeWM/tree/master/volume-widget)
|
- [volume-widget](https://github.com/streetturtle/AwesomeWM/tree/master/volume-widget)
|
||||||
- [battery-widget](https://github.com/streetturtle/AwesomeWM/tree/master/battery-widget)
|
- [battery-widget](https://github.com/streetturtle/AwesomeWM/tree/master/battery-widget)
|
||||||
|
|
||||||
These widgets use [Arc icon theme](https://github.com/horst3180/arc-icon-theme) by default but it could be easily changed to any other icon theme.
|
These widgets use [Arc icon theme](https://github.com/horst3180/arc-icon-theme) by default but it could be easily changed to any other icon theme. If you want to have separators between widget like on screenshot create text widget with ` : ` and place it between widgets:
|
||||||
|
|
||||||
|
```lua
|
||||||
|
...
|
||||||
|
sprtr = wibox.widget.textbox()
|
||||||
|
sprtr:set_text(" : ")
|
||||||
|
...
|
||||||
|
sprtr,
|
||||||
|
volume_icon,
|
||||||
|
sprtr,
|
||||||
|
battery_widget,
|
||||||
|
sprtr,
|
||||||
|
...
|
||||||
|
```
|
||||||
|
|
||||||
# Installation
|
# Installation
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue