basic_wm icon indicating copy to clipboard operation
basic_wm copied to clipboard

Nothing happens when I do these

Open foryoung2018 opened this issue 1 year ago • 1 comments

Alt + Left Click: Move window Alt + Right Click: Resize window Alt + F4: Close window Alt + Tab: Switch window

ctrl+shift grabs mouse and keyboard showing in Xephyr window title

foryoung2018 avatar Jan 16 '24 10:01 foryoung2018

If you are using a keyboard which has a numLock key, note that key binding will be viewed as Mod1Mask | ... | Mod2Mask instead, all thing you need to do is to turn off NumLock or just add Mask like this XGrabButton( display_, Button1, Mod1Mask | Mod2Mask, //you should add Mod2Mask in every grab function if don't want to turn off NumLock w, false, ButtonPressMask | ButtonReleaseMask | ButtonMotionMask, GrabModeAsync, GrabModeAsync, None, None);

little-populus avatar Apr 10 '24 02:04 little-populus