Skip to main content

lefthk_core/config/
keybind.rs

1use serde::{Deserialize, Serialize};
2
3use super::command::utils::normalized_command::NormalizedCommand;
4
5#[derive(Debug, PartialEq, Eq, Clone, Serialize, Deserialize)]
6pub struct Keybind {
7    pub command: NormalizedCommand,
8    pub modifier: Vec<String>,
9    pub key: String,
10}