mirror of
				https://github.com/KevinMidboe/dotfiles.git
				synced 2025-10-29 17:40:19 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			259 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			259 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| #!/bin/sh
 | |
| 
 | |
| CAPS_KEY=0x700000039
 | |
| F10_KEY=0x700000043
 | |
| 
 | |
| DATA=$(printf '{"UserKeyMapping":[{"HIDKeyboardModifierMappingSrc":%s,"HIDKeyboardModifierMappingDst":%s}]}' $CAPS_KEY $F10_KEY)
 | |
| hidutil property --set $DATA
 | |
| 
 | |
| echo "Successfully overwrote CAPS KEY to F10!"
 |