mirror of
				https://github.com/tiyn/dotfiles.git
				synced 2025-11-04 14:31:16 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			585 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			585 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/sh
 | 
						|
 | 
						|
wifipercent="    "
 | 
						|
 | 
						|
[ "$(cat /sys/class/net/w*/operstate)" = 'down' ] && wifiicon="^c#ff0000^ ^d^" && wifipercent=0
 | 
						|
 | 
						|
if ls /sys/class/net/*/operstate > /dev/null 2>&1; then
 | 
						|
    wifiicon="^c#ff0000^ ^d^" && wifipercent=0
 | 
						|
fi
 | 
						|
 | 
						|
[ ! -n "${wifiicon+var}" ] && wifiicon="^c#dfdfdf^ ^d^" && wifipercent=$(grep "^\s*w" /proc/net/wireless | awk '{ print int($3 * 100 / 70) }')
 | 
						|
 | 
						|
wifipercent=$(printf %3s $wifipercent | tr ' ' ' ')
 | 
						|
echo "$(cat /sys/class/net/e*/operstate | sed "s/down/^b#282828^^c#ff0000^  /;s/up/^b#282828^^c#dfdfdf^  /")" "$wifiicon" "$wifipercent%"
 |