Files
milsko/pl/ostype/Linux.pl
2026-01-09 14:45:12 -07:00

9 lines
115 B
Raku

if (param_get("experimental-wayland")) {
use_backend("wayland", "x11");
}
else {
use_backend("x11");
}
1;