Go to file
pmakhov 2b4dba4853 batteryarc widget 2017-10-09 17:14:03 -04:00
battery-widget Only show warning if charger is not plugged in 2017-10-09 10:30:03 +02:00
batteryarc-widget batteryarc widget 2017-10-09 17:14:03 -04:00
brightness-widget Added space between icon and number, and added % afterwards. 2017-10-09 11:25:51 +02:00
cpu-widget add widget in local scope 2017-09-28 09:42:38 -04:00
email-widget Show 0 email if script returns nothing 2017-02-04 10:38:46 -05:00
rhythmbox-widget readme update 2017-02-01 21:45:15 -05:00
spotify-widget case insensitive search for application name 2017-07-24 14:27:02 -04:00
translate-widget translate widget 2017-07-16 22:04:46 -04:00
volume-widget Merge remote-tracking branch 'origin/master' 2017-06-17 12:48:03 -04:00
volumearc-widget volumearc widget 2017-10-09 16:20:20 -04:00
volumebar-widget Update README.md 2017-09-06 14:00:29 -04:00
weather-widget Few small improvements for weather widget 2017-06-05 21:14:51 -04:00
.gitignore .gitignore for idea files 2017-02-05 13:17:51 -05:00
LICENSE Update LICENSE 2017-01-31 10:33:30 -05:00
README.md Update README.md 2017-10-05 09:44:18 -04:00
screenshot.png weather widget 2017-02-07 20:31:34 -05:00

README.md

AwesomeWM

Set of super simple widgets compatible with Awesome Window Manager v.4+.

screenshot

From left to right:

These widgets use 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:

...
sprtr = wibox.widget.textbox()
sprtr:set_text(" : ")
...
sprtr,
volume_icon,
sprtr,
battery_widget,
sprtr,
...

Installation

Install Arc icon theme and follow installation instructions of each widget.

Or you can clone this repo under ~/.config/awesome/ and then add widgets you'd like to use in wibox:

cd ~/.config/awesome/
git clone https://github.com/streetturtle/awesome-wm-widgets.git

and in rc.lua

require("awesome-wm-widgets.battery-widget.battery")
...
 -- Add widgets to the wibox
     s.mywibox:setup {
         layout = wibox.layout.align.horizontal,
         { -- Left widgets
         ...
         },
         s.mytasklist, -- Middle widget
         { -- Right widgets
         ...
             battery_widget,
         ...
         }

Icons

If you don't want to install Arc icon theme you can just download the icons which are used from the Arc repository. Or create your own icons with the same name.

In case of any questions/suggestions don't hesitate to contact me, I would be happy to help :)

PRs/issues and st★rs are welcome!