mirror of
				https://forge.katzen.cafe/schrottkatze/nix-configs.git
				synced 2025-10-31 01:27:57 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
	
		
			587 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
	
		
			587 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| (deflisten bat 
 | |
|   :initial "<span foreground=\"#cc241d\">BAT0 ERR</span>"
 | |
|   { "~/.config/eww/scripts/bat.nu auto"}
 | |
| )
 | |
| 
 | |
| (defwidget cpu [] 
 | |
|   (box
 | |
|     :class "cpuIndicator"
 | |
|     (label
 | |
|       :markup "<span foreground=\"#d65d0e\"></span> ${strlength(round(EWW_CPU.avg, 0)) == 1 ? " ${round(EWW_CPU.avg, 0)}" : round(EWW_CPU.avg, 0)}<span foreground=\"#7c6f64\">%</span>"
 | |
|     )
 | |
|   )
 | |
| )
 | |
| 
 | |
| (defwidget mem []
 | |
|   (box 
 | |
|     :class "memIndicator"
 | |
|     (label
 | |
|       :markup "<span foreground=\"#d65d0e\"> </span> ${round(EWW_RAM.used_mem_perc, 0)}<span foreground=\"#7c6f64\">%</span>"
 | |
|     )
 | |
|   )
 | |
| )
 | |
| 
 | 
