Mapping right Super key

Trying out KDE after a long time on Gnome. I have a script for xmodmap which remaps the right super/meta key to the menu key. No issues on Gnome, but when I am running KDE, the context menu appears but then the Launcher is also activated causing the context menu to close.

What I would like is that the left meta key activates the Launcher and the right meta key activates the context menu (and not the Launcher).

The script, just in case:

#!/usr/bin/env bash
xmodmap -e “remove mod4 = Super_R”
xmodmap -e “keycode 134 = Menu”
xmodmap -e “keycode 135 = Super_R”
xmodmap -e “add mod4 = Super_R”

Also, I am on Fedora 37, using KDE from the repository.

Any ideas?

Thanks,
drdec