steamfetch 0.5.0

neofetch for Steam - Display your Steam stats in terminal
1
2
3
4
5
6
7
8
fn main() {
    // Set rpath so the binary looks for Steam API library in the same directory
    #[cfg(target_os = "linux")]
    println!("cargo:rustc-link-arg=-Wl,-rpath,$ORIGIN");

    #[cfg(target_os = "macos")]
    println!("cargo:rustc-link-arg=-Wl,-rpath,@executable_path");
}