mirror of
https://github.com/LGUG2Z/komorebi.git
synced 2026-03-23 18:01:12 +01:00
This commit aligns the border option naming and arguments between the dynamic and static configuration approaches. The previously named border_width and border_offset options in the static config will be replaced by active_window_border_width and active_window_border_offset in v0.1.19. Similarly the option for the offset will now take a single signed integer, as it does when using the komorebic command. re #526
35 lines
763 B
TOML
35 lines
763 B
TOML
[workspace]
|
|
|
|
resolver = "2"
|
|
members = [
|
|
"derive-ahk",
|
|
"komorebi",
|
|
"komorebi-core",
|
|
"komorebic",
|
|
]
|
|
|
|
[workspace.dependencies]
|
|
windows-interface = { version = "0.51" }
|
|
windows-implement = { version = "0.51" }
|
|
|
|
[workspace.dependencies.windows]
|
|
version = "0.51"
|
|
features = [
|
|
"implement",
|
|
"Win32_System_Com",
|
|
"Win32_UI_Shell_Common", # for IObjectArray
|
|
"Win32_Foundation",
|
|
"Win32_Graphics_Dwm",
|
|
"Win32_Graphics_Gdi",
|
|
"Win32_System_LibraryLoader",
|
|
"Win32_System_RemoteDesktop",
|
|
"Win32_System_Threading",
|
|
"Win32_UI_Accessibility",
|
|
"Win32_UI_HiDpi",
|
|
"Win32_UI_Input_KeyboardAndMouse",
|
|
"Win32_UI_Shell",
|
|
"Win32_UI_Shell_Common",
|
|
"Win32_UI_WindowsAndMessaging",
|
|
"Win32_System_SystemServices"
|
|
]
|