Greet
Library and CLI tool for sending requests to greetd.
Usage
You can browse the Greet reference.
CLI
sh
astal-greet --helpLibrary
js
import Greet from "gi://AstalGreet"
Greet.login("username", "password", "compositor", (_, res) => {
try {
Greet.login_finish(res)
} catch (err) {
printerr(err)
}
})py
from gi.repository import AstalGreet as Greet
def callback(_, res):
try
Greet.login_finish(res)
except Exception as e:
print(e)
Greet.login("username", "password", "compositor", callback)lua
local Greet = require("lgi").require("AstalGreet")
Greet.login("username", "password", "compositor", function (_, res)
local err = Greet.login_finish(res)
if err ~= nil then
print(err)
end
end)vala
try {
yield AstalGreet.login("username", "password", "compositor");
} catch (Error err) {
printerr(err.message);
}Installation
install dependencies
shsudo pacman -Syu meson vala valadoc json-glib gobject-introspectionshsudo dnf install meson vala valadoc json-glib-devel gobject-introspection-develshsudo apt install meson valac valadoc libjson-glib-dev gobject-introspectionINFO
Although
greetdis not a direct build dependency, it should be self-explanatory that the daemon is required to be available at runtime.clone repo
shgit clone https://github.com/aylur/astal.git cd astal/lib/greetinstall
shmeson setup build meson install -C build