#installed #cross-platform #system #finding #running #frontmost

bin+lib applications

A cross-platform library for finding installed applications

3 unstable releases

new 0.2.0 Apr 23, 2024
0.1.1 Nov 20, 2023
0.1.0 Nov 18, 2023

#208 in Images

Download history 16/week @ 2024-02-16 17/week @ 2024-02-23 2/week @ 2024-03-01 21/week @ 2024-03-08 9/week @ 2024-03-15 10/week @ 2024-03-29 105/week @ 2024-04-19

115 downloads per month

MIT license

51KB
1K SLoC

apps-rs

This crate is used to

  • get a list of installed applications on the system
  • get the frontmost application
  • get a list of running applications

Platforms

  • Mac
  • Linux
  • Windows

Usage

use applications::{AppInfoContext, AppInfo};

fn main() {
    let mut ctx = AppInfoContext::new();
    ctx.refresh_apps().unwrap(); // must refresh apps before getting them

    let apps = ctx.get_all_apps();
    println!("Apps: {:#?}", apps);

    let frontmost_app = ctx.get_frontmost_application().unwrap();
    println!("Frontmost App: {:#?}", frontmost_app);

    let running_apps = ctx.get_running_apps();
    println!("Running Apps: {:#?}", running_apps);
}

How?

How and where to search for available desktop applications on each platform?

Linux

Desktop applications are specified in files that ends with .desktop. echo $XDG_DATA_DIRS to see a list of paths where these desktop files could reside in.

The .desktop files are in toml format. Parse them with toml crate.

The Exec can be used to launch the app, and Icon field contains the app icon.

MacOS

The simplest way is to search in /Applications folder. The app icon is in .icns format. Apple silicon macs can now run iOS apps. iOS app icons are in .png format.

system_profiler command can be used to get installed applications.

system_profiler SPApplicationsDataType is the command to use to get a full list of applications.

Windows

https://crates.io/crates/winreg could be useful. Ask chatgpt for sample code.

Libraries

Dependencies

~12–21MB
~144K SLoC