Screens

The screens configuration variable is where the physical screens, their associated bars, and the widgets contained within the bars are defined.

Please see Widgets Reference for a listing of built-in widgets.

Example

Tying together screens, bars and widgets, we get something like this:

from libqtile.config import Screen
from libqtile import bar, widget

screens = [
    Screen(
        bottom=bar.Bar([
            widget.GroupBox(),
            widget.WindowName()
            ], 30),
        ),
    Screen(
        bottom=bar.Bar([
            widget.GroupBox(),
            widget.WindowName()
            ], 30),
        )
    ]

Bars support background colors and gradients, e.g. bar.Bar(..., background="#000000") will give you a black back ground (the default), while bar.Bar(..., background=["#000000", "#FFFFFF"]) will give you a background that fades from black to white.

Qtile Documentation

Contents

Previous topic

Mouse

Next topic

Starting Qtile

This Page