A fake fastfetch clone: prints device info that is fully CLI-controlled, unrelated to the actual machine.
Dependencies
pub struct Cpu {
name : String
cores : Int
clock : Float
}pub struct DeviceModel {
name : String
about : String
host : String
os : String
device : String
kernel : String
uptime : Uptime
shell : String
resolution : Resolution?
de : String
wm : String
wm_theme : String
terminal : String
term_font : String
cpu : Cpu
gpu : Gpu
memory : Memory
logo : String
}pub struct Gpu {
name : String
vram : Int
}pub struct Memory {
used : Float
total : Float
}pub struct Resolution {
width : Int
height : Int
}pub struct Uptime {
hours : Int
mins : Int
}fn default_model_name() -> StringA fake fastfetch clone: prints device info that is fully CLI-controlled, unrelated to the actual machine.
Dependencies