kiwmi is configured completely in Lua. All types kiwmi offers are actually reference types, pointing to the actual internal types. This means Lua's garbage collection has no effect on the lifetime of the object.
kiwmi offers the following classes to work with:
true
when invoked from kiwmic, false
otherwise.
This is the type of the global kiwmi
singleton, representing the compositor.
This is the entry point to the API.
Returns the active kiwmi_output
.
See request_active_output
.
Sets the background color (shown behind all views) to color
(in the format #rrggbb).
Returns a reference to the cursor object.
Returns the currently focused view.
Returns the output at a specified position
Used to register event listeners.
Quit kiwmi.
Call callback
after delay
ms.
Callback get passed itself, so that it can easily reregister itself.
Sets verbosity of kiwmi to the level specified with a number (see kiwmi:verbosity()
).
Spawn a new process.
command
is passed to /bin/sh
.
Stops an interactive move or resize.
Unfocus the currently focused view.
Returns the numerical verbosity level of kiwmi (value of one of wlr_log_importance
, silent = 0, error = 1, info = 2, debug = 3).
Get the view at a specified position.
A new keyboard got attached. Callback receives a reference to the keyboard.
Called when the active output needs to be requested (for example because a layer-shell surface needs to be positioned). Callback receives nothing and optionally returns a kiwmi_output.
If this isn't set or returns nil
, the compositor defaults to the output the focused view is on, and if there is no view, the output the mouse is on.
A new output got attached. Callback receives a reference to the output.
A new view got created (actually mapped). Callback receives a reference to the view.
A reference to the cursor object.
Returns the output at the cursor position or nil
if there is none.
Used to register event listeners.
Get the current position of the cursor.
Returns two parameters: x
and y
.
Returns the view at the cursor position, or nil
if there is none.
A mouse button got pressed. Callback receives the ID of the button (i.e. LMB is 1, RMB is 2, ...).
The callback is supposed to return true
if the event was handled.
The compositor will not forward it to the view under the cursor.
A mouse button got released. Callback receives the ID of the button (i.e. LMB is 1, RMB is 2, ...).
The callback is supposed to return true
if the event was handled.
The compositor will not forward it to the view under the cursor.
The cursor got moved.
Callback receives a table containing oldx
, oldy
, newx
, and newy
.
Something was scrolled.
The callback receives a table containing device
with the device name, vertical
indicating whether it was a vertical or horizontal scroll, and length
with the length of the vector (negative for left of up scrolls).
The callback is supposed to return true
if the event was handled.
The compositor will not forward it to the view under the cursor.
A handle to a keyboard.
The function takes a table as parameter. The possible table indexes are "rules, model, layout, variant, options". All the table parameters are optional and set to the system default if not set. For the values to set have a look at the xkbcommon library. https://xkbcommon.org/doc/current/structxkb__rule__names.html
Returns a table with the state of all modifiers.
These are: shift
, caps
, ctrl
, alt
, mod2
, mod3
, super
, and mod5
.
Used to register event listeners.
The keyboard is getting destroyed. Callback receives the keyboard.
A key got pressed.
Callback receives a table containing the key
, keycode
, raw
, and the keyboard
.
This event gets triggered twice, once with mods applied (i.e. Shift+3
is #
) and raw
set to false
, and then again with no mods applied and raw
set to true
.
The callback is supposed to return true
if the event was handled.
The compositor will not forward it to the focused view in that case.
A key got released.
Callback receives a table containing the key
, keycode
, raw
, and the keyboard
.
This event gets triggered twice, once with mods applied (i.e. Shift+3
is #
) and raw
set to false
, and then again with no mods applied and raw
set to true
.
The callback is supposed to return true
if the event was handled.
The compositor will not forward it to the focused view in that case.
A handle to a registered callback.
Represents an output (most often a display).
Tells the compositor to start automatically positioning the output (this is on per default).
Moves the output to a specified position. This is referring to the top-left corner.
The name of the output.
Used to register event listeners.
Get the position of the output.
Returns two parameters: x
and y
.
Get the size of the output.
Returns two parameters: width
and height
.
Returns a table containing the x
, y
, width
and height
of the output's usable area, relative to the output's top left corner.
The output is getting destroyed. Callback receives the output.
The output is being resized.
Callback receives a table containing the output
, the new width
, and the new height
.
The usable area of this output has changed, e.g. because the output was resized or the bars around it changed.
Callback receives a table containing the output
and the new x
, y
, width
and height
.
Represents a view (a window in kiwmi terms).
Returns the app id of the view. This is comparable to the window class of X windows.
Closes the view.
Set whether the client is supposed to draw their own client decoration.
Focuses the view.
view:hidden()
Returns true
if the view is hidden, false
otherwise.
Hides the view.
Returns an ID unique to the view.
Starts an interactive move.
Starts an interactive resize.
Takes a table containing the name of the edges, that the resize is happening on.
So for example to resize pulling on the bottom right corner you would pass {"b", "r"}
.
Moves the view to the specified position.
Used to register event listeners.
Returns the process ID of the client associated with the view.
Returns the position of the view (top-left corner).
Resizes the view.
Unhides the view.
Returns the size of the view.
NOTE: Used directly after view:resize()
, this still returns the old size.
Takes a table containing all edges that are tiled, or a bool to indicate all 4 edges.
Returns the title of the view.
The view is being destroyed. Callback receives the view.
This is a no-op event. Temporarily preserved only to make config migration easier.
This is a no-op event. Temporarily preserved only to make config migration easier.
The view wants to start an interactive move. Callback receives the view.
The view wants to start an interactive resize.
Callback receives a table containing the view
, and edges
, containing the edges.