milsko/pl/ostype/Linux.pl

12 lines
197 B
Perl
Raw Normal View History

2026-04-06 17:29:09 +09:00
my @enabled_backends = ();
if (param_get("wayland")) {
2026-04-06 17:29:09 +09:00
push(@enabled_backends, "wayland");
}
if (param_get("x11")) {
2026-04-06 17:29:09 +09:00
push(@enabled_backends, "x11");
}
use_backend(@enabled_backends);
1;