mirror of
https://github.com/LGUG2Z/komorebi.git
synced 2026-01-11 14:40:25 +01:00
[BUG]: All Command Prompts not Tiling #177
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
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