hyprshell-launcher-lib 4.10.2

A modern GTK4-based window switcher and application launcher for Hyprland
mod actions;
mod applications;
#[cfg(feature = "calc")]
mod calc;
mod main;
mod path;
mod search;
mod shell;
mod terminal;

pub use applications::get_stored_runs as get_applications_stored_runs;
pub use applications::reload_desktop_entries_map as reload_applications_desktop_entries_map;

#[cfg(feature = "calc")]
pub use calc::init_context as init_calc_context;
#[cfg(not(feature = "calc"))]
pub const fn init_calc_context() {}

pub use main::{
    PluginReturn, SortableLaunchOption, SortedLaunchOption, StaticLaunchOption,
    get_sorted_launch_options, get_static_launch_options, get_static_options_chars, launch,
};