Add icon for gamepad + align icon-less devices (#87)

This commit is contained in:
Jorenar
2025-11-03 08:35:46 +01:00
committed by GitHub
parent be97a3a757
commit 01e3de8bbd

View File

@@ -54,8 +54,9 @@ impl Device {
"computer" => Some(String::from("")),
"input-keyboard" => Some(String::from("󰌌")),
"input-mouse" => Some(String::from("󰍽")),
"input-gaming" => Some(String::from("󰊴")),
"phone" => Some(String::from("󰏲")),
_ => None,
_ => Some(String::from(" ")),
}
}
}