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
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
:: 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
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 @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
@liamtsang commented on GitHub (Feb 2, 2023):
Tried manually adding manage-rules but its not helping either
@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