mirror of
https://github.com/Zedfrigg/ironbar.git
synced 2025-09-16 03:36:58 +02:00
Rewrites the desktop file parser code and image resolver code to introduce caching system and make fully async. They should be much faster now. BREAKING CHANGE: The `icon_theme` setting has been moved from per-bar to top-level
19 lines
391 B
Rust
19 lines
391 B
Rust
#[cfg(any(
|
|
feature = "clipboard",
|
|
feature = "keyboard",
|
|
feature = "launcher",
|
|
feature = "music",
|
|
feature = "workspaces",
|
|
))]
|
|
mod gtk;
|
|
mod provider;
|
|
|
|
#[cfg(any(
|
|
feature = "clipboard",
|
|
feature = "keyboard",
|
|
feature = "launcher",
|
|
feature = "music",
|
|
feature = "workspaces",
|
|
))]
|
|
pub use self::gtk::*;
|
|
pub use provider::{Provider, create_and_load_surface};
|