mirror of
https://github.com/LGUG2Z/komorebi.git
synced 2026-01-11 14:40:25 +01:00
Komorebi should open on startup #102
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 @johnnaaron on GitHub (Jun 26, 2022).
Since Komorebic doesn't have an associated startup service and Komorebi.exe does not start Komorebic upon execution, there isn't a great way to enable dynamic tiling on startup like Yabai does (brew service).
Current solutions appear to involve running Powershell scripts (disabled by default) via a startup .cmd, or via task scheduler. My current setup doesn't actually start correctly through scripting though, but it does show
Start-Process komorebi -WindowStyle hiddenas expected.~\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup\komorebic-start.cmd
-->
powerShell -windowstyle hidden "C:\Users\Aaron\komorebic-start.ps1"C:\Users\Aaron\komorebic-start.ps1
-->
komorebic startWhat solution do you all use?
@calendulish commented on GitHub (Jun 27, 2022):
I'm using a .bat script and nircmd, like that:
you can put it on startup folder or as a task on task scheduler
@tsingakbar commented on GitHub (Nov 17, 2022):
I setup the autohotkey script following thre README, insert these code at the beginning to launch komorebi and wait it until ready.
Then generate a symbolic link to this script, place it to windows's start folder.
Hope this helps.
@rickywu commented on GitHub (Jan 17, 2024):
Autohotkey v2:
RunWait('komorebic.exe start -c komorebi.json --whkd', , "Hide")