Skip to content

Commit

Permalink
komorebi v0.1.26
Browse files Browse the repository at this point in the history
  • Loading branch information
CtByte committed May 23, 2024
1 parent ce63ddd commit ea04a62
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@ export type KomorebiLayout =
| 'ultrawide_vertical_stack'
| 'rows'
| 'grid'
| 'right_main_vertical_stack'
| 'custom';

export type KomorebiLayoutFlip =
Expand Down
2 changes: 1 addition & 1 deletion packages/desktop/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ netdev = "0.24"
regex = "1"

[target.'cfg(all(target_os = "windows", target_arch = "x86_64"))'.dependencies]
komorebi-client = { git = "https://github.com/LGUG2Z/komorebi", tag = "v0.1.25" }
komorebi-client = { git = "https://github.com/LGUG2Z/komorebi", tag = "v0.1.26" }

[target.'cfg(target_os = "macos")'.dependencies]
cocoa = "0.25"
Expand Down
2 changes: 1 addition & 1 deletion packages/desktop/src/providers/komorebi/provider.rs
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ impl KomorebiProvider {
KomorebiMonitor {
id: monitor.id(),
name: monitor.name().to_string(),
device_id: monitor.device_id().clone(),
device_id: Some(monitor.device_id().clone()),
focused_workspace_index: monitor.focused_workspace_idx(),
size: *monitor.size(),
work_area_size: *monitor.work_area_size(),
Expand Down

0 comments on commit ea04a62

Please sign in to comment.