mirror of
https://github.com/gustavosett/Windows-11-Clipboard-History-For-Linux
synced 2026-04-26 01:25:11 +02:00
* chore: revert "fix: revert "fix: cinnamon hotkeys problem (#24)" (#26)"
This reverts commit cd17d9d6b1.
* fix: installment not registering keys
18 lines
674 B
Rust
18 lines
674 B
Rust
//! Windows 11 Clipboard History For Linux Library
|
|
//! This module re-exports the core functionality for use as a library
|
|
|
|
pub mod clipboard_manager;
|
|
pub mod config_manager;
|
|
pub mod emoji_manager;
|
|
pub mod focus_manager;
|
|
pub mod gif_manager;
|
|
pub mod input_simulator;
|
|
pub mod session;
|
|
|
|
pub use clipboard_manager::{ClipboardContent, ClipboardItem, ClipboardManager};
|
|
pub use config_manager::ConfigManager;
|
|
pub use emoji_manager::{EmojiManager, EmojiUsage};
|
|
pub use focus_manager::{restore_focused_window, save_focused_window};
|
|
pub use gif_manager::{paste_gif_to_clipboard, paste_gif_to_clipboard_with_uri};
|
|
pub use session::{get_session_type, is_wayland, is_x11, SessionType};
|