2

I'm using gnome-tweaks-tool to set an alternative hotkey for changing keyboard layout (Ctrl+Shift). It works - layout changes, but keyboard indicator on top toolbar doesn't change after pressing hotkey. If I use standart combination Super+Space layout and indicator on toolbar work good.

Can I fix this issue?

2 Answers2

8

After discussing the issue on the Ubuntu Launchpad it seems that it related to the Wayland session. Under Xorg, everything works fine.

To switch from Wayland to Xorg (from https://linuxconfig.org/how-to-enable-disable-wayland-on-ubuntu-22-04-desktop):

sudo vim /etc/gdm3/custom.conf

Uncomment the line:

#WaylandEnable=false

Restart GDM3 display manager:

sudo systemctl restart gdm3
Zzaponka
  • 181
4

run this in terminal:

gsettings set org.gnome.desktop.wm.keybindings switch-input-source-backward "['<Control>Shift_L']"

got this answer from here - below the marked as right answer.

Sagi314
  • 81
  • 1
  • 7