[BUG]: All Command Prompts not Tiling #177

Closed
opened 2026-01-05 14:48:45 +01:00 by adam · 2 comments
Owner

Originally created by @liamtsang on GitHub (Feb 2, 2023).

Hello, just installed, every application is working except for command prompts. Cmd, powershell, cmder etc. None are being tiled at all. Please help! Thanks

Originally created by @liamtsang on GitHub (Feb 2, 2023). Hello, just installed, every application is working except for command prompts. Cmd, powershell, cmder etc. None are being tiled at all. Please help! Thanks
adam added the bug label 2026-01-05 14:48:45 +01:00
adam closed this issue 2026-01-05 14:48:45 +01:00
Author
Owner

@liamtsang commented on GitHub (Feb 2, 2023):

Tried manually adding manage-rules but its not helping either

@liamtsang commented on GitHub (Feb 2, 2023): Tried manually adding manage-rules but its not helping either
Author
Owner

@liamtsang commented on GitHub (Feb 3, 2023):

Was able to fix it with this batch file on startup:

@echo off
title startup script
nircmd win hide title "startup script"
komorebic start

:: "komorebic start" currently is not waiting for everything be ready before return, so the
:: following lines prevent running commands bellow on startup before komorebi is ready to accept them
:wait_komorebi
komorebic state >nul 2>&1 || goto wait_komorebi

komorebic manage-rule exe "cmd.exe"
komorebic manage-rule exe "ConEmu64.exe"

:: optional, if you want to keep this script running for some reason
:: e.g.: I use this to auto restart my startup script if komorebi exit
nircmd waitprocess komorebi.exe

Couldn't figure out how to get the ahk startup settings to work so idk but this works for me

@liamtsang commented on GitHub (Feb 3, 2023): Was able to fix it with this batch file on startup: @echo off title startup script nircmd win hide title "startup script" komorebic start :: "komorebic start" currently is not waiting for everything be ready before return, so the :: following lines prevent running commands bellow on startup before komorebi is ready to accept them :wait_komorebi komorebic state >nul 2>&1 || goto wait_komorebi komorebic manage-rule exe "cmd.exe" komorebic manage-rule exe "ConEmu64.exe" :: optional, if you want to keep this script running for some reason :: e.g.: I use this to auto restart my startup script if komorebi exit nircmd waitprocess komorebi.exe Couldn't figure out how to get the ahk startup settings to work so idk but this works for me
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/komorebi#177