awesome-wm-widgets/apt-widget
Dmitriy 331e059e71 Fix formatting for pipeline 2023-12-07 12:04:51 +03: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 Fix formatting for pipeline 2023-12-07 12:04:51 +03: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(),
		...