feat(deskclaw): rebrand + vibe presets + chat model picker

This commit is contained in:
DeskClaw Bot
2026-04-21 13:56:26 +00:00
Unverified
parent 92144ab639
commit aa4d1fe2b2
23 changed files with 377 additions and 73 deletions

View File

@@ -57,7 +57,7 @@ export function createTray(mainWindow: BrowserWindow): Tray {
tray = new Tray(icon);
// Set tooltip
tray.setToolTip('ClawX - AI Assistant');
tray.setToolTip('DeskClaw - AI Assistant');
const showWindow = () => {
if (mainWindow.isDestroyed()) return;
@@ -68,7 +68,7 @@ export function createTray(mainWindow: BrowserWindow): Tray {
// Create context menu
const contextMenu = Menu.buildFromTemplate([
{
label: 'Show ClawX',
label: 'Show DeskClaw',
click: showWindow,
},
{
@@ -122,7 +122,7 @@ export function createTray(mainWindow: BrowserWindow): Tray {
type: 'separator',
},
{
label: 'Quit ClawX',
label: 'Quit DeskClaw',
click: () => {
app.quit();
},
@@ -157,7 +157,7 @@ export function createTray(mainWindow: BrowserWindow): Tray {
*/
export function updateTrayStatus(status: string): void {
if (tray) {
tray.setToolTip(`ClawX - ${status}`);
tray.setToolTip(`DeskClaw - ${status}`);
}
}