1
pub async fn is_installed() -> bool {
2
    super::command::exec("mangohud", ["--version"])
3
        .await
4
        .is_ok()
5
}