mirror of
https://github.com/sxyazi/yazi.git
synced 2026-07-25 08:41:05 +00:00
12 lines
252 B
Rust
12 lines
252 B
Rust
use yazi_config::{THEME, YAZI};
|
|
|
|
pub(super) struct RatermOption {
|
|
pub bg: String,
|
|
pub mouse: bool,
|
|
}
|
|
|
|
impl Default for RatermOption {
|
|
fn default() -> Self {
|
|
Self { bg: THEME.app.bg_color(), mouse: !YAZI.mgr.mouse_events.get().is_empty() }
|
|
}
|
|
}
|