nwg-notifications 0.3.0

D-Bus notification daemon + notification center for Hyprland and Sway. Claims org.freedesktop.Notifications, shows popup toasts, and ships a slide-out history panel with Do-Not-Disturb controls and optional waybar integration. Replaces mako; runs standalone.
1
2
3
4
5
6
7
8
9
use nwg_common::config::css;

/// Embedded notification CSS, loaded at compile time.
const NOTIFICATION_CSS: &str = include_str!("../assets/notifications.css");

/// Loads the notification CSS styling.
pub fn load_notification_css() {
    css::load_css_from_data(NOTIFICATION_CSS);
}