diff options
Diffstat (limited to 'dots')
-rw-r--r-- | dots/finicky/.finicky.js | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/dots/finicky/.finicky.js b/dots/finicky/.finicky.js new file mode 100644 index 0000000..34c8def --- /dev/null +++ b/dots/finicky/.finicky.js @@ -0,0 +1,18 @@ +export default { + defaultBrowser: "LibreWolf", + rewrite: [ + { + match: "x.com/*", + url: (url) => { + url.host = "xcancel.com"; + return url; + }, + }, + ], + handlers: [ + { + match: "bsky.app/*", + browser: "LirbeWolf", + } + ], +}; |