Go to file
streetturtle cf0689df7b Fix #141 simplify calculation of the battery chage status 2020-05-12 22:12:20 -04:00
battery-widget Display the notification on the current screen 2020-04-15 19:00:10 +02:00
batteryarc-widget Fix #141 simplify calculation of the battery chage status 2020-05-12 22:12:20 -04:00
bitbucket-widget Handle network issues 2020-04-23 20:15:30 -04:00
brightness-widget Change cloned dir to proper folder 2020-04-25 16:06:48 +01:00
brightnessarc-widget Change cloned dir to proper folder 2020-04-25 16:07:50 +01:00
calendar-widget remove trailing space 2019-12-24 20:38:27 -05:00
cpu-widget remove unused comment 2020-04-28 20:45:29 -04:00
email-widget fix for python 3 2020-03-02 16:21:08 +01:00
fs-widget [fs-widget] few cosmetic changes 2020-02-22 13:55:04 -05:00
gerrit-widget add titles for error notifications 2019-12-17 21:37:03 -05:00
jira-widget Handle network issues 2020-04-23 20:15:00 -04:00
mpdarc-widget fix: mpdarc is not a wigdet 2019-04-09 15:13:54 +02:00
pomodoroarc-widget small changes to pomo widget 2018-09-22 19:47:43 -04:00
ram-widget Make ram-widget compatible for non-english OS 2019-09-02 15:48:25 -04:00
rhythmbox-widget readme update 2017-02-01 21:45:15 -05:00
run-shell use screen resolution 2020-04-28 20:46:06 -04:00
run-shell-2 some improvements to run-shell2 2019-01-25 22:26:39 -05:00
run-shell-3 Fix ambiguity in run-shell-3 README 2020-04-25 16:02:55 +01:00
spotify-shell show shell on focused screen 2018-11-05 17:02:37 -05:00
spotify-widget escape ampersand, fix #136 2020-04-30 09:04:52 -04:00
stackoverflow-widget remove duplicated param 2020-04-28 20:46:35 -04:00
todo-widget Update README.md 2020-04-30 11:28:33 -04:00
translate-widget few small improvements 2020-04-30 10:07:50 -04:00
volume-widget Display the notification on the current screen 2020-04-15 19:00:10 +02:00
volumearc-widget Fix ambiguity of volumearc README 2020-04-25 15:58:59 +01:00
volumebar-widget Make backgrounds theme-able 2020-02-07 10:27:02 +01:00
weather-widget Display the notification on the current screen 2020-04-15 19:00:10 +02: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 Add tweet button to readme 2020-03-04 09:55:27 -05:00
Screenshot from 2019-03-01 14-28-18.png Add files via upload 2019-03-01 14:42:45 -05:00
awesome-o.png awesome-0 2019-02-24 16:43:53 -05:00
awesome.png awesome logo 2019-02-24 09:24:33 -05:00
screenshot.png update main readme 2017-10-09 17:34:51 -04:00
screenshot_with_sprtrs.png update main readme 2017-10-09 17:34:51 -04:00
widgets-icons.png Add files via upload 2019-03-04 16:19:24 -05:00

README.md

logo

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

Screenshots

Spotify, CPU, RAM, brightness-arc, volume-arc and battery-arc widgets:

Brightness, volume and battery widgets:

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!

Stargazers

Stargazers over time