diff --git a/editors/vscode/client/extension.ts b/editors/vscode/client/extension.ts index 1257c4129..55365d347 100644 --- a/editors/vscode/client/extension.ts +++ b/editors/vscode/client/extension.ts @@ -172,7 +172,9 @@ export async function activate(context: ExtensionContext) { ? "statusBarItem.activeBackground" : "statusBarItem.errorBackground", ); - myStatusBarItem.text = `oxc: ${enable ? "on" : "off"}`; + myStatusBarItem.text = `oxc: ${enable ? "$(check-all)" : "$(circle-slash)"}`; + + myStatusBarItem.backgroundColor = bgColor; } updateStatsBar(clientConfig.enable);