diff options
author | streetturtle <streetturtle@gmail.com> | 2017-02-03 22:15:26 -0500 |
---|---|---|
committer | streetturtle <streetturtle@gmail.com> | 2017-02-03 22:15:26 -0500 |
commit | 7807fc10bb08ccad3fb00112c78e1448c92f788a (patch) | |
tree | 51aa634381cfd82a86caefa83bfd160e9e206cd5 | |
parent | 52590602d91d705c9a356359b56f45c55cb4d9d8 (diff) | |
parent | d80bc793834f11d35ee147f10d0d0fe8869c5d75 (diff) |
Merge branch 'master' of https://github.com/streetturtle/AwesomeWM
-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 widgets like on the 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! |