espanso/src/main.rs

31 lines
696 B
Rust
Raw Normal View History

use std::sync::mpsc;
2019-08-30 19:24:03 +00:00
use crate::keyboard::KeyboardInterceptor;
use crate::matcher::Matcher;
use crate::matcher::scrolling::ScrollingMatcher;
use crate::engine::Engine;
2019-09-01 20:00:31 +00:00
use crate::config::Configs;
2019-09-05 15:20:52 +00:00
use std::thread;
2019-08-30 16:32:10 +00:00
mod keyboard;
2019-08-30 19:24:03 +00:00
mod matcher;
mod engine;
2019-09-01 20:00:31 +00:00
mod config;
2019-08-30 12:33:40 +00:00
fn main() {
let configs = Configs::load_default();
2019-08-30 12:33:40 +00:00
let (txc, rxc) = mpsc::channel();
2019-08-30 16:32:10 +00:00
let sender = keyboard::get_sender();
2019-09-05 15:20:52 +00:00
let engine = Engine::new(sender);
2019-09-05 15:20:52 +00:00
thread::spawn(move || {
let matcher = ScrollingMatcher::new(configs.matches.to_vec(), engine);
matcher.watch(rxc);
});
2019-08-31 15:00:23 +00:00
2019-09-05 15:20:52 +00:00
let interceptor = keyboard::get_interceptor(txc);
interceptor.initialize();
interceptor.start();
2019-08-30 12:33:40 +00:00
}