#1697·komorebi

[BUG]: Window hide behavior does not hide windows on another virtual desktop when configured to use cloak

Author: oandreluisCreated Apr 23, 2026Updated Jun 25, 2026
Labelsbug

Summary

When using the Window hide behavior (the process that hides windows when switching virtual desktops) with the action set to cloak, target windows are not hidden on other virtual desktops. The windows remain visible/active after switching virtual desktops on Windows 11.

Version Information

Operating system: Windows 11 25H2

Komorebi version: 0.1.40

Session type: Windows native virtual desktops

Window hide behavior configured: cloak

How Komorebi was installed: installed via terminal using winget

Window manager: Windows Desktop Window Manager (DWM)

Komorebi Configuration

json
komorebi.json

Hotkey Configuration

bash
.shell powershell

# Reload whkd configuration
# alt + o                 : taskkill /f /im whkd.exe && start /b whkd # if shell is cmd
alt + o                 : taskkill /f /im whkd.exe; Start-Process whkd -WindowStyle hidden # if shell is pwsh / powershell
alt + shift + o         : komorebic reload-configuration

alt + i                 : komorebic toggle-shortcuts

# App shortcuts - these require shell to be pwsh / powershell
# The apps will be focused if open, or launched if not open
# alt + f                 : if ($wshell.AppActivate('Firefox') -eq $False) { start firefox }
# alt + b                 : if ($wshell.AppActivate('Chrome') -eq $False) { start chrome }

alt + q                 : komorebic close
alt + m                 : komorebic minimize

# Focus windows
alt + left                : komorebic focus left
alt + down                : komorebic focus down
alt + up                  : komorebic focus up
alt + right               : komorebic focus right
alt + shift + oem_4       : komorebic cycle-focus previous # oem_4 is [
alt + shift + oem_6       : komorebic cycle-focus next # oem_6 is ]

# Move windows
alt + shift + left        : komorebic move left
alt + shift + down        : komorebic move down
alt + shift + up          : komorebic move up
alt + shift + right       : komorebic move right
alt + shift + return      : komorebic promote

# Stack windows
alt + j              : komorebic stack left
alt + k              : komorebic stack down
alt + shift + i              : komorebic stack up
alt + l              : komorebic stack right
alt + u              : komorebic unstack
alt + oem_4          : komorebic cycle-stack previous # oem_4 is [
alt + oem_6          : komorebic cycle-stack next # oem_6 is ]

# Resize
alt + oem_plus          : komorebic resize-axis horizontal increase
alt + oem_minus         : komorebic resize-axis horizontal decrease
alt + shift + oem_plus  : komorebic resize-axis vertical increase
alt + shift + oem_minus : komorebic resize-axis vertical decrease

# Manipulate windows
alt + t                 : komorebic toggle-float
alt + shift + f         : komorebic toggle-monocle

# Window manager options
alt + shift + r         : komorebic retile
alt + p                 : komorebic toggle-pause

# Layouts
alt + x                 : komorebic flip-layout horizontal
alt + y                 : komorebic flip-layout vertical

# Workspaces
alt + 1                 : komorebic focus-workspace 0
alt + 2                 : komorebic focus-workspace 1
alt + 3                 : komorebic focus-workspace 2
alt + 4                 : komorebic focus-workspace 3
alt + 5                 : komorebic focus-workspace 4
alt + 6                 : komorebic focus-workspace 5
alt + 7                 : komorebic focus-workspace 6
alt + 8                 : komorebic focus-workspace 7

# Move windows across workspaces
alt + shift + 1         : komorebic move-to-workspace 0
alt + shift + 2         : komorebic move-to-workspace 1
alt + shift + 3         : komorebic move-to-workspace 2
alt + shift + 4         : komorebic move-to-workspace 3
alt + shift + 5         : komorebic move-to-workspace 4
alt + shift + 6         : komorebic move-to-workspace 5
alt + shift + 7         : komorebic move-to-workspace 6
alt + shift + 8         : komorebic move-to-workspace 7


# Exemplo para mover janela entre monitores (ajuste alt/win)
alt + shift + h :: move-to-monitor-prev
alt + shift + l :: move-to-monitor-next

Output of komorebic check

bash
No KOMOREBI_CONFIG_HOME detected, defaulting to C:\Users\andre

Looking for configuration files in C:\Users\andre

Found komorebi.json; this file can be passed to the start command with the --config flag

Found C:\Users\andre\.config\whkdrc; key bindings will be loaded from here when whkd is started, and you can start it automatically using the --whkd flag