hyprshell-launcher-lib 4.9.5

A modern GTK4-based window switcher and application launcher for Hyprland
1
2
3
4
5
6
7
8
9
10
use crate::LauncherData;
use relm4::adw::gtk::prelude::*;
use tracing::{debug_span, trace};

pub fn stop_launcher(data: &LauncherData) {
    let _span = debug_span!("stop_launcher").entered();

    trace!("Closing window {:?}", data.window.id());
    data.window.close();
}