milsko/pl/ostype/Linux.pl
IoI_xD d4f6ca14e2
All checks were successful
pyrite-dev/milsko/pipeline/head This commit looks good
allow x11 backend to be disabled (on by default) (i doubt people will do this)
2026-03-31 13:54:12 -07:00

12 lines
193 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;