Two Keyboards with different layouts on Ubuntu 18
I know similar questions have been asked already, but I did not find an answer to my problem. My Laptop has a German QWERTZ Keyboard Layout, as well as my pairing keyboard. My primary Keyboard is an US QWERTY keyboard. On Ubuntu Gnome 16.04 LTS, I used the following script to change the Layout just for the US keyboard :
#!/usr/bin/env bash
for id in $(xinput -list | grep 'Logitech USB Keyboard' | cut -f 2 | cut -d= -f 2); do
setxkbmap -device $id -layout us -variant altgr-intl
done
I also set "org.gnome.settings-daemon.plugins.keyboard active" to 'false' to prevent Gnome from overwriting these settings. I'm not completely sure if I did anything else in ubuntu Gnome 16.04, but as far as I know this used to work fine.
After upgrading to Ubuntu 18 I find that the keyboard layout is changed back to the system-wide default (german qwertz) after some time. Does anyone know how I can prevent Gnome from doing that?
gnome keyboard keyboard-layout
add a comment |
I know similar questions have been asked already, but I did not find an answer to my problem. My Laptop has a German QWERTZ Keyboard Layout, as well as my pairing keyboard. My primary Keyboard is an US QWERTY keyboard. On Ubuntu Gnome 16.04 LTS, I used the following script to change the Layout just for the US keyboard :
#!/usr/bin/env bash
for id in $(xinput -list | grep 'Logitech USB Keyboard' | cut -f 2 | cut -d= -f 2); do
setxkbmap -device $id -layout us -variant altgr-intl
done
I also set "org.gnome.settings-daemon.plugins.keyboard active" to 'false' to prevent Gnome from overwriting these settings. I'm not completely sure if I did anything else in ubuntu Gnome 16.04, but as far as I know this used to work fine.
After upgrading to Ubuntu 18 I find that the keyboard layout is changed back to the system-wide default (german qwertz) after some time. Does anyone know how I can prevent Gnome from doing that?
gnome keyboard keyboard-layout
add a comment |
I know similar questions have been asked already, but I did not find an answer to my problem. My Laptop has a German QWERTZ Keyboard Layout, as well as my pairing keyboard. My primary Keyboard is an US QWERTY keyboard. On Ubuntu Gnome 16.04 LTS, I used the following script to change the Layout just for the US keyboard :
#!/usr/bin/env bash
for id in $(xinput -list | grep 'Logitech USB Keyboard' | cut -f 2 | cut -d= -f 2); do
setxkbmap -device $id -layout us -variant altgr-intl
done
I also set "org.gnome.settings-daemon.plugins.keyboard active" to 'false' to prevent Gnome from overwriting these settings. I'm not completely sure if I did anything else in ubuntu Gnome 16.04, but as far as I know this used to work fine.
After upgrading to Ubuntu 18 I find that the keyboard layout is changed back to the system-wide default (german qwertz) after some time. Does anyone know how I can prevent Gnome from doing that?
gnome keyboard keyboard-layout
I know similar questions have been asked already, but I did not find an answer to my problem. My Laptop has a German QWERTZ Keyboard Layout, as well as my pairing keyboard. My primary Keyboard is an US QWERTY keyboard. On Ubuntu Gnome 16.04 LTS, I used the following script to change the Layout just for the US keyboard :
#!/usr/bin/env bash
for id in $(xinput -list | grep 'Logitech USB Keyboard' | cut -f 2 | cut -d= -f 2); do
setxkbmap -device $id -layout us -variant altgr-intl
done
I also set "org.gnome.settings-daemon.plugins.keyboard active" to 'false' to prevent Gnome from overwriting these settings. I'm not completely sure if I did anything else in ubuntu Gnome 16.04, but as far as I know this used to work fine.
After upgrading to Ubuntu 18 I find that the keyboard layout is changed back to the system-wide default (german qwertz) after some time. Does anyone know how I can prevent Gnome from doing that?
gnome keyboard keyboard-layout
gnome keyboard keyboard-layout
asked May 24 '18 at 15:57
chiricochirico
11
11
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Maybe this can help you?
First, use xinput to identify your keyboards.
Then, use setxkbmap to set the layout.
My keyboards are id 10 (laptop integrated) and id 17 (external keyboard).
Now, set my external keyboard to be Swedish layout, and my internal to Dvorak:
$ setxkbmap -device 17 se
$ setxkbmap -device 10 dvorak
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1039891%2ftwo-keyboards-with-different-layouts-on-ubuntu-18%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Maybe this can help you?
First, use xinput to identify your keyboards.
Then, use setxkbmap to set the layout.
My keyboards are id 10 (laptop integrated) and id 17 (external keyboard).
Now, set my external keyboard to be Swedish layout, and my internal to Dvorak:
$ setxkbmap -device 17 se
$ setxkbmap -device 10 dvorak
add a comment |
Maybe this can help you?
First, use xinput to identify your keyboards.
Then, use setxkbmap to set the layout.
My keyboards are id 10 (laptop integrated) and id 17 (external keyboard).
Now, set my external keyboard to be Swedish layout, and my internal to Dvorak:
$ setxkbmap -device 17 se
$ setxkbmap -device 10 dvorak
add a comment |
Maybe this can help you?
First, use xinput to identify your keyboards.
Then, use setxkbmap to set the layout.
My keyboards are id 10 (laptop integrated) and id 17 (external keyboard).
Now, set my external keyboard to be Swedish layout, and my internal to Dvorak:
$ setxkbmap -device 17 se
$ setxkbmap -device 10 dvorak
Maybe this can help you?
First, use xinput to identify your keyboards.
Then, use setxkbmap to set the layout.
My keyboards are id 10 (laptop integrated) and id 17 (external keyboard).
Now, set my external keyboard to be Swedish layout, and my internal to Dvorak:
$ setxkbmap -device 17 se
$ setxkbmap -device 10 dvorak
answered Jan 6 at 15:11
Torben Gundtofte-BruunTorben Gundtofte-Bruun
4,4502463102
4,4502463102
add a comment |
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1039891%2ftwo-keyboards-with-different-layouts-on-ubuntu-18%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown