mirror of
				https://git.davidovski.xyz/dot.git
				synced 2024-08-15 00:43:28 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			4 lines
		
	
	
	
		
			149 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			4 lines
		
	
	
	
		
			149 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
| #!/bin/sh
 | |
| full=$(cat /sys/class/power_supply/BAT0/charge_now) 
 | |
| now=$(cat /sys/class/power_supply/BAT0/charge_full)
 | |
| echo $full / $now  \* 100 | bc -l
 |