awesome/awesome-wm-widgets
Thomas Forgione 26793c6bdd Escape passwords 2022-01-06 10:40:34 +01:00
..
battery-widget Better widgets 2018-11-28 15:31:35 +01:00
batteryarc-widget Better widgets 2018-11-28 15:31:35 +01:00
brightness-widget Better widgets 2018-11-28 15:31:35 +01:00
cpu-widget Better widgets 2018-11-28 15:31:35 +01:00
email-widget Escape passwords 2022-01-06 10:40:34 +01:00
mpdarc-widget Better widgets 2018-11-28 15:31:35 +01:00
pomodoroarc-widget Better widgets 2018-11-28 15:31:35 +01:00
ram-widget Adapted for system without swap 2018-11-29 10:39:58 +01:00
rhythmbox-widget Better widgets 2018-11-28 15:31:35 +01:00
run-shell Better widgets 2018-11-28 15:31:35 +01:00
spotify-shell Better widgets 2018-11-28 15:31:35 +01:00
spotify-widget Better widgets 2018-11-28 15:31:35 +01:00
translate-widget Better widgets 2018-11-28 15:31:35 +01:00
volume-widget Better widgets 2018-11-28 15:31:35 +01:00
volumearc-widget Better widgets 2018-11-28 15:31:35 +01:00
volumebar-widget Better widgets 2018-11-28 15:31:35 +01:00
weather-widget Better widgets 2018-11-28 15:31:35 +01:00
.gitignore Better widgets 2018-11-28 15:31:35 +01:00
LICENSE Better widgets 2018-11-28 15:31:35 +01:00
README.md Better widgets 2018-11-28 15:31:35 +01:00
screenshot.png Better widgets 2018-11-28 15:31:35 +01:00
screenshot_with_sprtrs.png Better widgets 2018-11-28 15:31:35 +01:00
secrets.lua Better widgets 2018-11-28 15:31:35 +01:00

README.md

Awesome WM widgets

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

screenshot

or with separators

screenshot

Some more screenshots in this reddit post

From left to right:

Some of these widgets use Arc icon theme by default but it could be easily changed to any other icon theme or custom icons. 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

Clone the repo under ~/.config/awesome/, then in rc.lua add the import of the widget you'd like to use in "require" section on the top of the file:

local battery_widget = require("awesome-wm-widgets.battery-widget.battery")

and then add widget to the wibox (you can search for mytextclock and add widget before):

 -- Add widgets to the wibox
     s.mywibox:setup {
         layout = wibox.layout.align.horizontal,
         { -- Left widgets
         ...
         },
         s.mytasklist, -- Middle widget
         { -- Right widgets
         ...
             battery_widget,
             mytextclock
         ...
         }

You will also need to install Arc icon theme if widget uses icons. By default it should be installed under /usr/share/icons/Arc. If you prefer different installation folder then you'll have to change path to the icons in the source code of the widget you want to use.

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!