mirror of
				https://github.com/tiyn/dotfiles.git
				synced 2025-10-31 04:21:15 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			301 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			301 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/sh
 | |
| 
 | |
| icon="^b#282828^^c#dfdfdf^  ^d^ "
 | |
| 
 | |
| if [ "$1" = "amd" ]; then
 | |
|     temp=$(sensors | awk '/Tctl/ {print  $2}')
 | |
| elif [ "$1" = "intel" ]; then
 | |
|     temp=$(sensors | awk '/Package id 0/ {print  $4}')
 | |
| fi
 | |
| 
 | |
| temp=$(printf %3s $(echo ${temp##*+} | sed "s/\..*//") | tr ' ' ' ')
 | |
| echo "$icon$temp°C"
 |