Skip to content

Commit

Permalink
run fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
nnyyxxxx committed Oct 11, 2024
1 parent a2c719f commit beb8271
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions hyprland-parser/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -89,10 +89,16 @@ impl HyprlandConfig {
"cursor" => self.cursor.insert(key.to_string(), value.to_string()),
"debug" => self.debug.insert(key.to_string(), value.to_string()),
"decoration:blur" => self.blur.insert(key.to_string(), value.to_string()),
"input:touchpad" => self.touchpad.insert(key.to_string(), value.to_string()),
"input:touchdevice" => self.touchdevice.insert(key.to_string(), value.to_string()),
"input:touchpad" => {
self.touchpad.insert(key.to_string(), value.to_string())
}
"input:touchdevice" => {
self.touchdevice.insert(key.to_string(), value.to_string())
}
"input:tablet" => self.tablet.insert(key.to_string(), value.to_string()),
"group:groupbar" => self.groupbar.insert(key.to_string(), value.to_string()),
"group:groupbar" => {
self.groupbar.insert(key.to_string(), value.to_string())
}
_ => None,
};
}
Expand Down

0 comments on commit beb8271

Please sign in to comment.