2025-01-31 21:24:47 +01:00
|
|
|
{ pkgs, ... }:
|
2023-10-18 16:56:15 -04:00
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
greasemonkeyScript = pkgs.writeText "qutebrowser-greasemonkey.js" ''
|
|
|
|
// ==UserScript==
|
|
|
|
// @name foo
|
|
|
|
// @namespace foo
|
|
|
|
// @match https://example.com/*
|
|
|
|
// @grant none
|
|
|
|
// ==/UserScript==
|
|
|
|
'';
|
|
|
|
|
|
|
|
in {
|
|
|
|
programs.qutebrowser = {
|
|
|
|
enable = true;
|
|
|
|
greasemonkey = [ greasemonkeyScript ];
|
|
|
|
};
|
|
|
|
|
|
|
|
nmt.script = let
|
|
|
|
scriptDir = if pkgs.stdenv.hostPlatform.isDarwin then
|
|
|
|
".qutebrowser/greasemonkey"
|
|
|
|
else
|
|
|
|
".config/qutebrowser/greasemonkey";
|
|
|
|
in ''
|
|
|
|
assertFileContent \
|
|
|
|
home-files/${scriptDir}/qutebrowser-greasemonkey.js \
|
|
|
|
${greasemonkeyScript}
|
|
|
|
'';
|
|
|
|
}
|