awesome-wm-widgets/docker-widget
2021-12-11 09:53:09 +08:00
..
icons [docker] add a delete button 2020-11-23 17:12:30 -05:00
docker.gif [docker] update readme 2020-08-17 17:00:55 -04:00
docker.lua correct valigh -> valign 2021-12-11 09:53:09 +08:00
README.md [docker] fix typo in readme 2020-12-23 20:41:24 -05:00

Docker Widget

GitHub issues by-label Twitter URL

The widget allows to manage docker containers, namely start/stop/pause/unpause:

Customization

It is possible to customize widget by providing a table with all or some of the following config parameters:

Name Default Description
icon ./docker-widget/icons/docker.svg Path to the icon
number_of_containers -1 Number of last created containers to show

Installation

Clone the repo under ~/.config/awesome/ and add widget in rc.lua:

local docker_widget = require("awesome-wm-widgets.docker-widget.docker")
...
s.mytasklist, -- Middle widget
	{ -- Right widgets
    	layout = wibox.layout.fixed.horizontal,
        ...
        -- default
        docker_widget(),
        -- customized
        docker_widget{
            number_of_containers = 5
        },