Files
milsko/pl/ostype/Linux.pl
2025-12-17 19:14:54 -07:00

9 lines
115 B
Raku

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