awesome-wm-widgets/apt-widget
David Liebman d45bdd5a40 apt-widget icon-control 2024-01-16 11:18:29 -05:00
..
icons [apt] new widget 2021-05-05 22:16:08 -04:00
screenshots [apt] new widget 2021-05-05 22:16:08 -04:00
README.md [apt] new widget 2021-05-05 22:16:08 -04:00
apt-widget.lua apt-widget icon-control 2024-01-16 11:18:29 -05:00

README.md

APT widget

Widget which shows a list of APT packages to be updated:

screenshot

Features:

  • scrollable list !!! (thanks to this post of reddit)
  • update single package
  • update multiple packages

Installation

Clone the repo under ~/.config/awesome/ folder, then in rc.lua add the following:

local apt_widget = require("awesome-wm-widgets.apt-widget.apt-widget")

...
s.mytasklist, -- Middle widget
	{ -- Right widgets
    	layout = wibox.layout.fixed.horizontal,
		...
		apt_widget(),
		...