1
1
mirror of https://github.com/Eugeny/tabby.git synced 2024-09-21 09:58:09 +03:00

Correctly name profiles for shells outside /usr

Shells outside /usr get named incorrectly. E.g., if I add /usr/local/bin/fish
to /etc/shells, when Tabby starts up, it think the profile name should be "local".
This commit is contained in:
Matthew Davidson 2021-07-16 16:50:32 -04:00
parent 8ac101cf9c
commit 7e8c19e97b

View File

@ -24,7 +24,7 @@ export class POSIXShellsProvider extends ShellProvider {
.filter(x => x && !x.startsWith('#'))
.map(x => ({
id: slugify(x),
name: x.split('/')[2],
name: x.split('/').pop(),
icon: 'fas fa-terminal',
command: x,
args: ['-l'],