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 Gpu {
name : String
vram : Int
}pub struct Memory {
used : Float
total : Float
}pub(all) struct Options {
model : String?
user : String?
host : String?
os : String?
device : String?
kernel : String?
uptime : String?
shell : String?
resolution : String?
de : String?
wm : String?
wm_theme : String?
terminal : String?
term_font : String?
cpu : String?
gpu : String?
memory : String?
logo : String?
color : String?
no_logo : Bool
}pub struct Resolution {
width : Int
height : Int
}pub struct Uptime {
hours : Int
mins : Int
}fn default_model_name() -> StringInstall
Download zipA fake fastfetch clone: prints device info that is fully CLI-controlled, unrelated to the actual machine.
Dependencies