Instead of Mod-Shift-Number, when using this kind of key combination as shortcuts, they are showed as 'Mod-!,@,#,etc', and pressing these key combination have the same effect as pressing 'Mod-1,2,3,etc'. Reproducible: Always
This is due to an inconsistence when handling keys in x11KeyPress, and grabKey. Mod-Shift-1 is handed to grabKey as Mod-!, without the Shift modifier. And in x11KeyPress, it is Mod-Shift-1, with the Shift modifier removed later. So the end result is Mod-1
Created attachment 91551 [details] A simple fix This is a patch that solve this problem. Although I'm not sure whether my approach is entirely correct.
*** This bug has been marked as a duplicate of bug 341959 ***