mirror of
				https://github.com/tiyn/dotfiles.git
				synced 2025-10-31 20:41:16 +01:00 
			
		
		
		
	statusbar: fixed memory padding error
This commit is contained in:
		| @@ -2,6 +2,8 @@ | |||||||
|  |  | ||||||
| icon="^b#282828^^c#dfdfdf^  ^d^ " | icon="^b#282828^^c#dfdfdf^  ^d^ " | ||||||
| total=$(free -h | awk '/^Mem:/ {print  $3/$2}') | total=$(free -h | awk '/^Mem:/ {print  $3/$2}') | ||||||
| percent=${total##*0\.} | percent=$(printf %-4s $total | tr ' ' '0') | ||||||
| percent=$(printf %3s $(echo ${percent##*0} | cut -c1-2) | tr ' ' ' ')% | percent=$(echo $percent | sed -e 's/^0//g') | ||||||
|  | percent=$(echo $percent | sed -e 's/\.//g') | ||||||
|  | percent=$(printf %3s $(echo $percent | cut -c1-2) | tr ' ' ' ')% | ||||||
| echo "$icon $percent" | echo "$icon $percent" | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user