milsko/pl/ostype/Linux.pl

8 lines
131 B
Perl
Raw Normal View History

if (system("wayland-scanner -v >/dev/null 2>&1") == 0) {
2025-11-29 17:56:33 -07:00
use_backend("wayland", "x11");
}
else {
2025-11-29 17:56:33 -07:00
use_backend("x11");
}
1;