icon updates

This commit is contained in:
2026-04-17 13:45:27 +02:00
parent 3e1f0f3ca9
commit da282058d8
3 changed files with 3 additions and 3 deletions

View File

@@ -64,7 +64,7 @@
{ {
"command": "appdaemon.restartHA", "command": "appdaemon.restartHA",
"title": "AppDaemon: Restart Home Assistant", "title": "AppDaemon: Restart Home Assistant",
"icon": "$(home)" "icon": "$(refresh)"
}, },
{ {
"command": "appdaemon.toggleProductionMode", "command": "appdaemon.toggleProductionMode",

View File

@@ -19,7 +19,7 @@ export class StatusBarManager {
// Restart Home Assistant // Restart Home Assistant
this.restartHAItem = vscode.window.createStatusBarItem(vscode.StatusBarAlignment.Left, 99); this.restartHAItem = vscode.window.createStatusBarItem(vscode.StatusBarAlignment.Left, 99);
this.restartHAItem.command = 'appdaemon.restartHA'; this.restartHAItem.command = 'appdaemon.restartHA';
this.restartHAItem.text = '$(home) HA'; this.restartHAItem.text = '$(refresh) HA';
this.restartHAItem.tooltip = 'Restart Home Assistant'; this.restartHAItem.tooltip = 'Restart Home Assistant';
this.restartHAItem.show(); this.restartHAItem.show();
@@ -56,7 +56,7 @@ export class StatusBarManager {
const label = appNames.length <= 2 const label = appNames.length <= 2
? appNames.join(', ') ? appNames.join(', ')
: `${appNames.length} apps`; : `${appNames.length} apps`;
this.contextualItem.text = `$(debug-restart) ${label}`; this.contextualItem.text = `$(refresh) ${label}`;
this.contextualItem.tooltip = `Restart: ${appNames.join(', ')}`; this.contextualItem.tooltip = `Restart: ${appNames.join(', ')}`;
this.contextualItem.show(); this.contextualItem.show();
} }