mirror of
https://github.com/js0ny/dotfiles.git
synced 2025-12-21 08:43:00 +00:00
10 lines
298 B
PowerShell
10 lines
298 B
PowerShell
if (Get-Command "kmonad" -ErrorAction SilentlyContinue) {
|
|
$KMonadPath = (Get-Command "kmonad").Source
|
|
}
|
|
else {
|
|
$KMonadPath = "D:\bin\kmonad.exe"
|
|
}
|
|
|
|
$KMonadConfig = "$Env:DOTFILES\tools\kmonad\windows.kbd"
|
|
|
|
Start-Process -FilePath $KMonadPath -ArgumentList $KMonadConfig -WindowStyle Hidden
|