This commit is contained in:
Philipp Hochkamp 2022-10-06 15:53:33 +02:00
parent 14af1ab2bf
commit f03fe0e542
2 changed files with 19 additions and 0 deletions

17
hosts/daedalus/finicky.js Normal file
View file

@ -0,0 +1,17 @@
module.exports = {
defaultBrowser: "Safari",
handlers: [
{
match: /^https?:\/\/gitlab\.com\/.*$/,
browser: "Vivaldi.app"
},
{
match: /^https?:\/\/.*\.atlassian\.com\/.*$/,
browser: "Vivaldi.app"
},
{
match: undefined,
browser: "Safari"
}
]
}