Module wibox
Functions
| wibox:set_widget () | Set the widget that the wibox displays |
| wibox:set_bg (c) | Set the background of the wibox |
| wibox:set_fg (c) | Set the foreground of the wibox |
| wibox:buttons () | Helper function to make wibox:buttons() work as expected |
| wibox:struts () | Helper function to make wibox:struts() work as expected |
| wibox:geometry () | Helper function to make wibox:geometry() work as expected |
| draw (wibox) | Redraw a wibox. |
Tables
| wibox | This provides widget box windows. |
| drawin | Widget box object. |
Functions
- wibox:set_widget ()
- Set the widget that the wibox displays
- wibox:set_bg (c)
-
Set the background of the wibox
Parameters:
c: The background to use. This must either be a cairo pattern object, nil or a string that gears.color() understands.
- wibox:set_fg (c)
-
Set the foreground of the wibox
Parameters:
c: The foreground to use. This must either be a cairo pattern object, nil or a string that gears.color() understands.
- wibox:buttons ()
- Helper function to make wibox:buttons() work as expected
- wibox:struts ()
- Helper function to make wibox:struts() work as expected
- wibox:geometry ()
- Helper function to make wibox:geometry() work as expected
- draw (wibox)
-
Redraw a wibox. You should never have to call this explicitely because it is
automatically called when needed.
Parameters:
wibox:
Tables
- wibox
- This provides widget box windows. Every wibox can also be used as if it were a drawin. All drawin functions and properties are also available on wiboxes! wibox
- drawin
- Widget box object. Every wibox "inherits" from a drawin and you can use all of drawin's functions directly on this as well. When creating a wibox, you can specify a "fg" and a "bg" color as keys in the table that is passed to the constructor. All other arguments will be passed to drawin's constructor.