public static void triggerA(PosScreen pos) {
Input input = pos.getInput();
if (capsLockSet || input.isFunctionSet("SHIFT")) {
input.appendChar('A');
} else {
input.appendChar('a');
}
}
public static void triggerB(PosScreen pos) {
Input input = pos.getInput();