diff --git a/src/commands/list.ts b/src/commands/list.ts index 166aef3..c7897d0 100644 --- a/src/commands/list.ts +++ b/src/commands/list.ts @@ -38,7 +38,7 @@ export async function action(opts: { json?: boolean }) { if (sessions.length === 0) { console.log("◆ No active sessions.") if ((await vm.status()) !== "running") { - console.log(`${red}VM is not running.${reset}`) + console.log(`\n${red}VM is not running.${reset}`) } return } @@ -82,6 +82,6 @@ export async function action(opts: { json?: boolean }) { console.log(`\n${dim}◯ idle${reset} · ${cyan}◎ active${reset} · ${yellow}◐ unsaved${reset} · ${green}● saved${reset}`) if ((await vm.status()) !== "running") { - console.log(`${red}VM is not running.${reset}`) + console.log(`\n${red}VM is not running.${reset}`) } }