mirror of
				https://github.com/Dejvino/pinephone-sway-poc.git
				synced 2025-10-31 10:25:20 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			193 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			193 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/bash
 | |
| 
 | |
| BACKLIGHT=~/.backlight
 | |
| 
 | |
| dialog --menu Backlight 0 0 10 \
 | |
| 	10 FULL \
 | |
| 	9  . \
 | |
| 	8  . \
 | |
| 	7  . \
 | |
| 	6  . \
 | |
| 	5  . \
 | |
| 	4  . \
 | |
| 	3  MIN \
 | |
| 	2>$BACKLIGHT && pptk-backlight set `cat $BACKLIGHT`
 | |
| 
 |