milsko/pl/ostype/Linux.pl
NishiOwO 0de09207a4
Some checks failed
pyrite-dev/milsko/pipeline/head There was a failure building this commit
refactor font api
2026-04-06 17:29:09 +09:00

12 lines
197 B
Raku

my @enabled_backends = ();
if (param_get("wayland")) {
push(@enabled_backends, "wayland");
}
if (param_get("x11")) {
push(@enabled_backends, "x11");
}
use_backend(@enabled_backends);
1;