mirror of
				https://github.com/tiyn/dotfiles.git
				synced 2025-10-30 12:01:16 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			378 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			378 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/sh
 | |
| 
 | |
| ## Toggle the state of the fnmode.
 | |
| ## Useful for using keyboards with different fn functionality.
 | |
| 
 | |
| curr=$(cat /sys/module/hid_apple/parameters/fnmode)
 | |
| 
 | |
| if [ "$curr" = "1" ]
 | |
| then
 | |
|     echo "0" | sudo tee -a /sys/module/hid_apple/parameters/fnmode > /dev/null
 | |
| elif [ "$curr" = "0" ]
 | |
| then
 | |
|     echo "1" | sudo tee -a /sys/module/hid_apple/parameters/fnmode > /dev/null
 | |
| fi
 |