added icon and rowboat url scheme handler to linux packages

This commit is contained in:
hrsvrn 2026-06-03 11:26:17 +05:30
parent d47cab6a0f
commit 547a22ae1a

View file

@ -66,7 +66,9 @@ module.exports = {
bin: "rowboat", bin: "rowboat",
description: 'AI coworker with memory', description: 'AI coworker with memory',
maintainer: 'rowboatlabs', maintainer: 'rowboatlabs',
homepage: 'https://rowboatlabs.com' homepage: 'https://rowboatlabs.com',
icon: path.join(__dirname, 'icons/icon.png'),
mimeType: ['x-scheme-handler/rowboat'],
} }
}) })
}, },
@ -77,7 +79,9 @@ module.exports = {
name: `Rowboat-linux`, name: `Rowboat-linux`,
bin: "rowboat", bin: "rowboat",
description: 'AI coworker with memory', description: 'AI coworker with memory',
homepage: 'https://rowboatlabs.com' homepage: 'https://rowboatlabs.com',
icon: path.join(__dirname, 'icons/icon.png'),
mimeType: ['x-scheme-handler/rowboat'],
} }
} }
}, },