mirror of
				https://github.com/NotAShelf/microfetch.git
				synced 2025-11-04 07:32:20 +00:00 
			
		
		
		
	implement --version for checking program version (#10)
	
		
			
	
		
	
	
		
	
		
			Some checks failed
		
		
	
	
		
			
				
	
				Rust / build (push) Has been cancelled
				
			
		
		
	
	
		
	
		
			Some checks failed
		
		
	
	Rust / build (push) Has been cancelled
				
			This commit is contained in:
		
					parent
					
						
							
								9ed9e8d930
							
						
					
				
			
			
				commit
				
					
						8f5bfcbd05
					
				
			
		
					 1 changed files with 18 additions and 14 deletions
				
			
		
							
								
								
									
										32
									
								
								src/main.rs
									
										
									
									
									
								
							
							
						
						
									
										32
									
								
								src/main.rs
									
										
									
									
									
								
							| 
						 | 
				
			
			@ -17,20 +17,24 @@ use color_eyre::Report;
 | 
			
		|||
fn main() -> Result<(), Report> {
 | 
			
		||||
    color_eyre::install()?;
 | 
			
		||||
 | 
			
		||||
    let utsname = nix::sys::utsname::uname()?;
 | 
			
		||||
    let fields = Fields {
 | 
			
		||||
        user_info: get_username_and_hostname(&utsname),
 | 
			
		||||
        os_name: get_os_pretty_name()?,
 | 
			
		||||
        kernel_version: get_system_info(&utsname)?,
 | 
			
		||||
        shell: get_shell(),
 | 
			
		||||
        desktop: get_desktop_info(),
 | 
			
		||||
        uptime: get_current()?,
 | 
			
		||||
        memory_usage: get_memory_usage()?,
 | 
			
		||||
        storage: get_root_disk_usage()?,
 | 
			
		||||
        colors: print_dots(),
 | 
			
		||||
    };
 | 
			
		||||
 | 
			
		||||
    print_system_info(&fields);
 | 
			
		||||
    let args: Vec<String> = std::env::args().collect();
 | 
			
		||||
    if args.len() > 1 && args[1] == "--version" {
 | 
			
		||||
        println!("Microfetch {}", env!("CARGO_PKG_VERSION"));
 | 
			
		||||
    } else {
 | 
			
		||||
        let utsname = nix::sys::utsname::uname()?;
 | 
			
		||||
        let fields = Fields {
 | 
			
		||||
            user_info: get_username_and_hostname(&utsname),
 | 
			
		||||
            os_name: get_os_pretty_name()?,
 | 
			
		||||
            kernel_version: get_system_info(&utsname)?,
 | 
			
		||||
            shell: get_shell(),
 | 
			
		||||
            desktop: get_desktop_info(),
 | 
			
		||||
            uptime: get_current()?,
 | 
			
		||||
            memory_usage: get_memory_usage()?,
 | 
			
		||||
            storage: get_root_disk_usage()?,
 | 
			
		||||
            colors: print_dots(),
 | 
			
		||||
        };
 | 
			
		||||
        print_system_info(&fields);
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    Ok(())
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue