Skip to content

Commit 01e3de8

Browse files
authored
Add icon for gamepad + align icon-less devices (#87)
1 parent be97a3a commit 01e3de8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/bluetooth.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,9 @@ impl Device {
5454
"computer" => Some(String::from("")),
5555
"input-keyboard" => Some(String::from("󰌌")),
5656
"input-mouse" => Some(String::from("󰍽")),
57+
"input-gaming" => Some(String::from("󰊴")),
5758
"phone" => Some(String::from("󰏲")),
58-
_ => None,
59+
_ => Some(String::from(" ")),
5960
}
6061
}
6162
}

0 commit comments

Comments
 (0)