Originally created by @NicTanghe on GitHub (Mar 14, 2025).
Summary
❯ komorebic start
Start-Process 'komorebi.exe' -WindowStyle hidden
Waiting for komorebi.exe to start...komorebi.exe did not start... Trying again
Start-Process 'komorebi.exe' -WindowStyle hidden
Waiting for komorebi.exe to start...komorebi.exe did not start... Trying again
Start-Process 'komorebi.exe' -WindowStyle hidden
Waiting for komorebi.exe to start...komorebi.exe did not start... Trying again
Running komorebi.exe directly for detailed error output
thread caused non-unwinding panic. aborting.
❯ komorebi.exe
2025-03-14T19:00:12.230613Z INFO foreground_lock_timeout: komorebi::windows_api: current value of ForegroundLockTimeout is 0
2025-03-14T19:00:12.233132Z INFO komorebi: creating window manager from static configuration file: C:\Users\Nicol\komorebi.json
2025-03-14T19:00:12.233605Z INFO komorebi::border_manager: purging known borders: []
2025-03-14T19:00:12.234254Z INFO komorebi::static_config: loading applications.json from: C:\Users\Nicol\applications.json
2025-03-14T19:00:12.237124Z INFO init: komorebi::window_manager: initialising
2025-03-14T19:00:12.306698Z INFO init:focus_window{idx=0}: komorebi::container: focusing window
2025-03-14T19:00:12.306931Z INFO init:focus_container{idx=0}: komorebi::workspace: focusing container
2025-03-14T19:00:12.307096Z INFO init:focus_window{idx=0}: komorebi::container: focusing window
2025-03-14T19:00:12.307238Z INFO init:focus_container{idx=0}: komorebi::workspace: focusing container
2025-03-14T19:00:12.346252Z INFO init:focus_window{idx=0}: komorebi::container: focusing window
2025-03-14T19:00:12.346450Z INFO init:focus_container{idx=0}: komorebi::workspace: focusing container
2025-03-14T19:00:12.347620Z INFO apply_state: komorebi::window_manager: applying state from C:\Users\Nicol\AppData\Local\Temp\komorebi.state.json
2025-03-14T19:00:12.347787Z INFO apply_state:focus_workspace{idx=0}: komorebi::monitor: focusing workspace
2025-03-14T19:00:12.348683Z ERROR apply_state: komorebi: panicked at komorebi\src\com\mod.rs:45:90:
called `Result::unwrap()` on an `Err` value: Error { code: HRESULT(0x80040154), message: "Class not registered"} panic.file="komorebi\\src\\com\\mod.rs" panic.line=45 panic.column=90
2025-03-14T19:00:12.348909Z ERROR apply_state: komorebi: panicked at library\core\src\panicking.rs:218:5:
panic in a function that cannot unwind panic.file="library\\core\\src\\panicking.rs" panic.line=218 panic.column=5
thread caused non-unwinding panic. aborting.
.shell powershell
# Reload whkd configuration
# win + o : taskkill /f /im whkd.exe && start /b whkd # if shell is cmd
win + o : taskkill /f /im whkd.exe; Start-Process whkd -WindowStyle hidden # if shell is pwsh / powershell
win + shift + o : komorebic reload-configuration
# App shortcuts - these require shell to be pwsh / powershell
# The apps will be focused if open, or launched if not open
win + f : firefox
win + RETURN : wt
win + q : komorebic close
win + m : komorebic minimize
# Focus windows
win + h : komorebic focus left
win + j : komorebic focus edown
win + k : komorebic focus up
win + l : komorebic focus right
win + shift + oem_4 : komorebic cycle-focus previous # oem_4 is [
win + shift + oem_6 : komorebic cycle-focus next # oem_6 is ]
# Move windows
win + shift + h : komorebic move left
win + shift + j : komorebic move down
win + shift + k : komorebic move up
win + shift + l : komorebic move right
win + shift + return : komorebic promote
# Stack windows
win + left : komorebic stack left
win + down : komorebic stack down
win + up : komorebic stack up
win + right : komorebic stack right
win + oem_1 : komorebic unstack # oem_1 is ;
win + oem_4 : komorebic cycle-stack previous # oem_4 is [
win + oem_6 : komorebic cycle-stack next # oem_6 is ]
# Resize
win + oem_plus : komorebic resize-axis horizontal increase
win + oem_minus : komorebic resize-axis horizontal decrease
win + shift + oem_plus : komorebic resize-axis vertical increase
win + shift + oem_minus : komorebic resize-axis vertical decrease
# Manipulate windows
win + t : komorebic toggle-float
win + shift + f : komorebic toggle-monocle
# Window manager options
win + shift + r : komorebic retile
win + p : komorebic toggle-pause
# Layouts
win + x : komorebic flip-layout horizontal
win + y : komorebic flip-layout vertical
# Workspaces
win + 1 : komorebic focus-workspace 0
win + 2 : komorebic focus-workspace 1
win + 3 : komorebic focus-workspace 2
win + 4 : komorebic focus-workspace 3
win + 5 : komorebic focus-workspace 4
win + 6 : komorebic focus-workspace 5
win + 7 : komorebic focus-workspace 6
win + 8 : komorebic focus-workspace 7
# Move windows across workspaces
win + shift + 1 : komorebic move-to-workspace 0
win + shift + 2 : komorebic move-to-workspace 1
win + shift + 3 : komorebic move-to-workspace 2
win + shift + 4 : komorebic move-to-workspace 3
win + shift + 5 : komorebic move-to-workspace 4
win + shift + 6 : komorebic move-to-workspace 5
win + shift + 7 : komorebic move-to-workspace 6
win + shift + 8 : komorebic move-to-workspace 7
Output of komorebic check
No KOMOREBI_CONFIG_HOME detected, defaulting to C:\Users\person
Looking for configuration files in C:\Users\person
Found komorebi.json; this file can be passed to the start command with the --config flag
Found C:\Users\Nicol.config\whkdrc; key bindings will be loaded from here when whkd is started, and you can start it automatically using the --whkd flag
Originally created by @NicTanghe on GitHub (Mar 14, 2025).
### Summary
❯ komorebic start
```
Start-Process 'komorebi.exe' -WindowStyle hidden
Waiting for komorebi.exe to start...komorebi.exe did not start... Trying again
Start-Process 'komorebi.exe' -WindowStyle hidden
Waiting for komorebi.exe to start...komorebi.exe did not start... Trying again
Start-Process 'komorebi.exe' -WindowStyle hidden
Waiting for komorebi.exe to start...komorebi.exe did not start... Trying again
Running komorebi.exe directly for detailed error output
thread caused non-unwinding panic. aborting.
```
❯ komorebi.exe
```sh
2025-03-14T19:00:12.230613Z INFO foreground_lock_timeout: komorebi::windows_api: current value of ForegroundLockTimeout is 0
2025-03-14T19:00:12.233132Z INFO komorebi: creating window manager from static configuration file: C:\Users\Nicol\komorebi.json
2025-03-14T19:00:12.233605Z INFO komorebi::border_manager: purging known borders: []
2025-03-14T19:00:12.234254Z INFO komorebi::static_config: loading applications.json from: C:\Users\Nicol\applications.json
2025-03-14T19:00:12.237124Z INFO init: komorebi::window_manager: initialising
2025-03-14T19:00:12.306698Z INFO init:focus_window{idx=0}: komorebi::container: focusing window
2025-03-14T19:00:12.306931Z INFO init:focus_container{idx=0}: komorebi::workspace: focusing container
2025-03-14T19:00:12.307096Z INFO init:focus_window{idx=0}: komorebi::container: focusing window
2025-03-14T19:00:12.307238Z INFO init:focus_container{idx=0}: komorebi::workspace: focusing container
2025-03-14T19:00:12.346252Z INFO init:focus_window{idx=0}: komorebi::container: focusing window
2025-03-14T19:00:12.346450Z INFO init:focus_container{idx=0}: komorebi::workspace: focusing container
2025-03-14T19:00:12.347620Z INFO apply_state: komorebi::window_manager: applying state from C:\Users\Nicol\AppData\Local\Temp\komorebi.state.json
2025-03-14T19:00:12.347787Z INFO apply_state:focus_workspace{idx=0}: komorebi::monitor: focusing workspace
2025-03-14T19:00:12.348683Z ERROR apply_state: komorebi: panicked at komorebi\src\com\mod.rs:45:90:
called `Result::unwrap()` on an `Err` value: Error { code: HRESULT(0x80040154), message: "Class not registered" } panic.file="komorebi\\src\\com\\mod.rs" panic.line=45 panic.column=90
2025-03-14T19:00:12.348909Z ERROR apply_state: komorebi: panicked at library\core\src\panicking.rs:218:5:
panic in a function that cannot unwind panic.file="library\\core\\src\\panicking.rs" panic.line=218 panic.column=5
thread caused non-unwinding panic. aborting.
```
### Version Information
❯ komorebic --version
komorebic 0.1.34
tag:v0.1.34
commit_hash:80edcadb
build_time:2025-02-21 02:21:41 +00:00
build_env:rustc 1.85.0 (4d91de4e4 2025-02-17),stable-x86_64-pc-windows-msvc
### Komorebi Configuration
```json
{
"$schema": "https://raw.githubusercontent.com/LGUG2Z/komorebi/v0.1.34/schema.json",
"app_specific_configuration_path": "$Env:USERPROFILE/applications.json",
"window_hiding_behaviour": "Cloak",
"cross_monitor_move_behaviour": "Insert",
"default_workspace_padding": 5,
"default_container_padding": 5,
"border": true,
"border_width": 2,
"border_offset": -1,
"theme": {
"palette": "Base16",
"name": "Ashes",
"unfocused_border": "Base03",
"bar_accent": "Base0D"
},
"stackbar": {
"height": 40,
"mode": "OnStack",
"tabs": {
"width": 300
}
},
"monitors": [
{
"workspaces": [
{
"name": "I",
"layout": "BSP"
},
{
"name": "II",
"layout": "VerticalStack"
},
{
"name": "III",
"layout": "HorizontalStack"
},
{
"name": "IV",
"layout": "UltrawideVerticalStack"
},
{
"name": "V",
"layout": "Rows"
},
{
"name": "VI",
"layout": "Grid"
},
{
"name": "VII",
"layout": "RightMainVerticalStack"
}
]
}
]
}
```
### Hotkey Configuration
```
.shell powershell
# Reload whkd configuration
# win + o : taskkill /f /im whkd.exe && start /b whkd # if shell is cmd
win + o : taskkill /f /im whkd.exe; Start-Process whkd -WindowStyle hidden # if shell is pwsh / powershell
win + shift + o : komorebic reload-configuration
# App shortcuts - these require shell to be pwsh / powershell
# The apps will be focused if open, or launched if not open
win + f : firefox
win + RETURN : wt
win + q : komorebic close
win + m : komorebic minimize
# Focus windows
win + h : komorebic focus left
win + j : komorebic focus edown
win + k : komorebic focus up
win + l : komorebic focus right
win + shift + oem_4 : komorebic cycle-focus previous # oem_4 is [
win + shift + oem_6 : komorebic cycle-focus next # oem_6 is ]
# Move windows
win + shift + h : komorebic move left
win + shift + j : komorebic move down
win + shift + k : komorebic move up
win + shift + l : komorebic move right
win + shift + return : komorebic promote
# Stack windows
win + left : komorebic stack left
win + down : komorebic stack down
win + up : komorebic stack up
win + right : komorebic stack right
win + oem_1 : komorebic unstack # oem_1 is ;
win + oem_4 : komorebic cycle-stack previous # oem_4 is [
win + oem_6 : komorebic cycle-stack next # oem_6 is ]
# Resize
win + oem_plus : komorebic resize-axis horizontal increase
win + oem_minus : komorebic resize-axis horizontal decrease
win + shift + oem_plus : komorebic resize-axis vertical increase
win + shift + oem_minus : komorebic resize-axis vertical decrease
# Manipulate windows
win + t : komorebic toggle-float
win + shift + f : komorebic toggle-monocle
# Window manager options
win + shift + r : komorebic retile
win + p : komorebic toggle-pause
# Layouts
win + x : komorebic flip-layout horizontal
win + y : komorebic flip-layout vertical
# Workspaces
win + 1 : komorebic focus-workspace 0
win + 2 : komorebic focus-workspace 1
win + 3 : komorebic focus-workspace 2
win + 4 : komorebic focus-workspace 3
win + 5 : komorebic focus-workspace 4
win + 6 : komorebic focus-workspace 5
win + 7 : komorebic focus-workspace 6
win + 8 : komorebic focus-workspace 7
# Move windows across workspaces
win + shift + 1 : komorebic move-to-workspace 0
win + shift + 2 : komorebic move-to-workspace 1
win + shift + 3 : komorebic move-to-workspace 2
win + shift + 4 : komorebic move-to-workspace 3
win + shift + 5 : komorebic move-to-workspace 4
win + shift + 6 : komorebic move-to-workspace 5
win + shift + 7 : komorebic move-to-workspace 6
win + shift + 8 : komorebic move-to-workspace 7
```
### Output of komorebic check
No KOMOREBI_CONFIG_HOME detected, defaulting to C:\Users\person
Looking for configuration files in C:\Users\person
Found komorebi.json; this file can be passed to the start command with the --config flag
Found C:\Users\Nicol\.config\whkdrc; key bindings will be loaded from here when whkd is started, and you can start it automatically using the --whkd flag
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
Originally created by @NicTanghe on GitHub (Mar 14, 2025).
Summary
❯ komorebic start
❯ komorebi.exe
Version Information
❯ komorebic --version
komorebic 0.1.34
tag:v0.1.34
commit_hash:80edcadb
build_time:2025-02-21 02:21:41 +00:00
build_env:rustc 1.85.0 (4d91de4e4 2025-02-17),stable-x86_64-pc-windows-msvc
Komorebi Configuration
Hotkey Configuration
Output of komorebic check
No KOMOREBI_CONFIG_HOME detected, defaulting to C:\Users\person
Looking for configuration files in C:\Users\person
Found komorebi.json; this file can be passed to the start command with the --config flag
Found C:\Users\Nicol.config\whkdrc; key bindings will be loaded from here when whkd is started, and you can start it automatically using the --whkd flag