On Wed, Jul 16, 2025 at 02:28:15PM +0200, Ignatios Souvatzis wrote: > On Wed, Jul 16, 2025 at 03:22:08PM +0530, Mayuresh wrote: > > > On Setup 2: both cursor down and PageDown keys behave the same jumping to > > the bottom of the next page. > > ... > > Any suggestions? > > Use xev to compare the created events for those keys in both scenarios. > That is, is the same event created for both cursur down events, and the > same created for both PageDown keys?
Good idea, thanks. NetBSD (over vnc): Cursor down: keycode 104 (keysym 0xff54, Down) Page down: keycode 105 (keysym 0xff56, Next) Linux: Cursor down: keycode 116 (keysym 0xff54, Down) Page down keycode 117 (keysym 0xff56, Next) Some difference in keycode but not in keysym. What does it tell? -- Mayuresh