blob: 8a0cb0f487c5c47f87b5f11d9d74859366840d4a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/usr/bin/env perl
use strict;
use warnings;
use xkbTestFunc;
xkbTestFunc::backupXkbSettings();
xkbTestFunc::dumpXkbSettingsBackup();
xkbTestFunc::testLevel2( "group", "option", 4, ":", "", 0, 0, 1 );
xkbTestFunc::restoreXkbSettings();
print "Done!\n";
|