mirror of
				https://gitlab.alpinelinux.org/alpine/aports.git
				synced 2025-10-31 08:21:49 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			262 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			262 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| #!/sbin/openrc-run
 | |
| 
 | |
| name="keyd"
 | |
| description="A key remapping deamon"
 | |
| 
 | |
| : ${error_logger="logger -t $name -p daemon.warning >/dev/null 2>&1"}
 | |
| 
 | |
| command="/usr/bin/keyd"
 | |
| command_background="yes"
 | |
| pidfile="/run/$RC_SVCNAME.pid"
 | |
| 
 | |
| depend() {
 | |
| 	need localmount dev-mount
 | |
| }
 |