qutebrowser: add greasemonkey userscript option

Co-authored-by: Ivar Scholten <ivar.scholten@protonmail.com>
This commit is contained in:
sisyphushappy 2023-10-18 16:56:15 -04:00 committed by GitHub
parent 54c1ca74d9
commit 3433206e51
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 71 additions and 1 deletions

View file

@ -1,5 +1,6 @@
{
qutebrowser-settings = ./settings.nix;
qutebrowser-greasemonkey = ./greasemonkey.nix;
qutebrowser-keybindings = ./keybindings.nix;
qutebrowser-quickmarks = ./quickmarks.nix;
qutebrowser-settings = ./settings.nix;
}

View file

@ -0,0 +1,34 @@
{ config, lib, pkgs, ... }:
with lib;
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 ];
};
test.stubs.qutebrowser = { };
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}
'';
}