applied sanders patch
This commit is contained in:
		
							parent
							
								
									924a088812
								
							
						
					
					
						commit
						1836b6740d
					
				
							
								
								
									
										18
									
								
								dwm.1
									
									
									
									
									
								
							
							
						
						
									
										18
									
								
								dwm.1
									
									
									
									
									
								
							| @ -47,16 +47,22 @@ and | |||||||
| .B floating | .B floating | ||||||
| mode. | mode. | ||||||
| .TP | .TP | ||||||
| .B Button2 |  | ||||||
| click on a tag label adds/removes that |  | ||||||
| .B tag |  | ||||||
| to/from the focused |  | ||||||
| .B window. |  | ||||||
| .TP |  | ||||||
| .B Button3 | .B Button3 | ||||||
| click on a tag label adds/removes all windows with that | click on a tag label adds/removes all windows with that | ||||||
| .B tag | .B tag | ||||||
| to/from the view. | to/from the view. | ||||||
|  | .TP | ||||||
|  | .B Mod1-Button1 | ||||||
|  | click on a tag label applies that | ||||||
|  | .B tag | ||||||
|  | to the focused | ||||||
|  | .BR window . | ||||||
|  | .TP | ||||||
|  | .B Mod1-Button3 | ||||||
|  | click on a tag label adds/removes that | ||||||
|  | .B tag | ||||||
|  | to/from the focused | ||||||
|  | .BR window . | ||||||
| .SS Keyboard commands | .SS Keyboard commands | ||||||
| .TP | .TP | ||||||
| .B Mod1-Shift-Return | .B Mod1-Shift-Return | ||||||
|  | |||||||
							
								
								
									
										13
									
								
								event.c
									
									
									
									
									
								
							
							
						
						
									
										13
									
								
								event.c
									
									
									
									
									
								
							| @ -111,13 +111,16 @@ buttonpress(XEvent *e) | |||||||
| 			if(ev->x < x) { | 			if(ev->x < x) { | ||||||
| 				switch(ev->button) { | 				switch(ev->button) { | ||||||
| 				case Button1: | 				case Button1: | ||||||
| 					view(&a); | 					if(ev->state & MODKEY) | ||||||
| 					break; | 						tag(&a); | ||||||
| 				case Button2: | 					else | ||||||
| 					toggletag(&a); | 						view(&a); | ||||||
| 					break; | 					break; | ||||||
| 				case Button3: | 				case Button3: | ||||||
| 					toggleview(&a); | 					if(ev->state & MODKEY) | ||||||
|  | 						toggletag(&a); | ||||||
|  | 					else | ||||||
|  | 						toggleview(&a); | ||||||
| 					break; | 					break; | ||||||
| 				} | 				} | ||||||
| 				return; | 				return; | ||||||
|  | |||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user
	 Anselm R. Garbe
						Anselm R. Garbe