0

From my basic understanding Ubuntu 17.10 now uses Wayland instead of Xorg, even though it is still possible to switch between the two.

I want to have my numlock key ON when I enter Ubuntu. I read people usually install numlockx to enable it, but it seems that it only works on Xorg.

I also read that in the Weston implementation of Wayland there is a config file where I can turn on the numlock key by defaul. Documentation here.

But I can't seem to find this weston.ini config file on my Ubuntu 17.10. Does ubuntu not use Weston? Is there a way for me to achieve this numlock behavior without having to switch GDM to Xorg?

Galvas
  • 71
  • 1
  • 5

2 Answers2

1

Ubuntu does use Wayland as the default (on GPUs which it can work on). However, Wayland is simply a protocol definition. Weston is one implementation of the protocol, but it is not the implementation used by default in Ubuntu. The implementation used in Ubuntu, is the GNOME shell itself.

dobey
  • 40,344
  • 5
  • 56
  • 98
0

add

[keyboard]
numlock-on=true

to ~/.config/weston.ini

Weston is the reference implementation of a Wayland compositor

you can start it with weston from a tty [ctrl alt backspace to exit]

ustick
  • 170
  • 8