mirror of https://github.com/cutefishos/calamares
[keyboard] Implemented X11 config writing for additional layout
parent
0dd027af90
commit
bfc60ad2cf
@ -0,0 +1,24 @@
|
||||
/* === This file is part of Calamares - <https://calamares.io> ===
|
||||
*
|
||||
* SPDX-FileCopyrightText: 2020 Artem Grinev <agrinev@manjaro.org>
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*
|
||||
* Calamares is Free Software: see the License-Identifier above.
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef KEYBOARD_ADDITIONAL_LAYOUT_INFO_H
|
||||
#define KEYBOARD_ADDITIONAL_LAYOUT_INFO_H
|
||||
|
||||
#include <QString>
|
||||
|
||||
struct AdditionalLayoutInfo {
|
||||
QString additionalLayout;
|
||||
QString additionalVariant;
|
||||
|
||||
QString groupSwitcher;
|
||||
|
||||
QString vconsoleKeymap;
|
||||
};
|
||||
|
||||
#endif
|
Loading…
Reference in New Issue