Files
milsko/pl/ostype/Linux.pl
2025-12-15 11:05:20 +09:00

9 lines
115 B
Raku

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