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