diff options
author | Pavel Makhov <streetturtle@users.noreply.github.com> | 2017-02-02 11:24:34 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-02 11:24:34 -0500 |
commit | aa09ea468695bfe790e5e9fdb908b3422b5cefdf (patch) | |
tree | 8a6412cae65d2ebdd69fd2f2363772e45946b166 | |
parent | 78fa8e629da7ea64ed54a2a8d6d08857b83e4324 (diff) |
Update README.md
-rw-r--r-- | README.md | 17 |
1 files changed, 15 insertions, 2 deletions
@@ -12,7 +12,20 @@ From left to right: - [volume-widget](https://github.com/streetturtle/AwesomeWM/tree/master/volume-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 @@ -20,4 +33,4 @@ These widgets use [Arc icon theme](https://github.com/horst3180/arc-icon-theme) In case of any questions/suggestions don't hesitate to contact me, I would be happy to help :) -PRs/issues are welcome!
\ No newline at end of file +PRs/issues are welcome! |