applied somwhat similiar patch like Alex Elide proposed
This commit is contained in:
		
							parent
							
								
									6e53ce4582
								
							
						
					
					
						commit
						8a7a68c4c0
					
				
							
								
								
									
										9
									
								
								slock.c
									
									
									
									
									
								
							
							
						
						
									
										9
									
								
								slock.c
									
									
									
									
									
								
							| @ -77,9 +77,12 @@ main(int argc, char **argv) { | ||||
| 	XDefineCursor(dpy, w, invisible); | ||||
| 	running = XGrabPointer(dpy, RootWindow(dpy, screen), False, | ||||
| 			ButtonPressMask | ButtonReleaseMask | PointerMotionMask, | ||||
| 			GrabModeAsync, GrabModeSync, None, invisible, CurrentTime) == GrabSuccess | ||||
| 		&& XGrabKeyboard(dpy, RootWindow(dpy, screen), True, GrabModeAsync, | ||||
| 			 GrabModeAsync, CurrentTime) == GrabSuccess; | ||||
| 			GrabModeAsync, GrabModeSync, None, invisible, CurrentTime) == GrabSuccess; | ||||
| 	len = 10; | ||||
| 	for(len = 10; len && (XGrabKeyboard(dpy, RootWindow(dpy, screen), True, GrabModeAsync, | ||||
| 		GrabModeAsync, CurrentTime) != GrabSuccess); len--) | ||||
| 		usleep(1000); | ||||
| 	running = running && (len > 0); | ||||
| 	XMapRaised(dpy, w); | ||||
| 	XSync(dpy, False); | ||||
| 
 | ||||
|  | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user
	 Anselm R. Garbe
						Anselm R. Garbe