Skip to content

Commit

Permalink
code formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
f-str committed Oct 5, 2024
1 parent 3a896bb commit acba8ee
Showing 1 changed file with 14 additions and 6 deletions.
20 changes: 14 additions & 6 deletions src/wm_info_provider/hyprland.rs
Original file line number Diff line number Diff line change
Expand Up @@ -114,19 +114,27 @@ fn hyprland_cb(conn: &mut Connection<State>, state: &mut State) -> io::Result<()
match hyprland.ipc.next_event() {
Ok(event) => {
if let Some(active_ws) = event.strip_prefix("workspace>>") {
let ws = hyprland.workspaces.iter().find(|ws| ws.name == active_ws).ok_or_else(|| {
io::Error::new(io::ErrorKind::InvalidData, "Unknown workspace")
})?;
let ws = hyprland
.workspaces
.iter()
.find(|ws| ws.name == active_ws)
.ok_or_else(|| {
io::Error::new(io::ErrorKind::InvalidData, "Unknown workspace")
})?;
hyprland.active_id = ws.id;
updated = true;
} else if let Some(data) = event.strip_prefix("focusedmon>>") {
let (_monitor, active_ws) = data.split_once(',').ok_or_else(|| {
io::Error::new(io::ErrorKind::InvalidData, "Too few fields in data")
})?;

let ws = hyprland.workspaces.iter().find(|ws| ws.name == active_ws).ok_or_else(|| {
io::Error::new(io::ErrorKind::InvalidData, "Unknown workspace")
})?;
let ws = hyprland
.workspaces
.iter()
.find(|ws| ws.name == active_ws)
.ok_or_else(|| {
io::Error::new(io::ErrorKind::InvalidData, "Unknown workspace")
})?;
hyprland.active_id = ws.id;
updated = true;
} else if event.contains("workspace>>") {
Expand Down

0 comments on commit acba8ee

Please sign in to comment.