qutebrowser: Own file

This commit is contained in:
Geoffrey Frogeye 2024-01-07 22:38:42 +01:00
parent 597b50ebef
commit ecc6cb983d
Signed by: geoffrey
GPG key ID: C72403E7F82E6AD8
21 changed files with 103 additions and 95 deletions

View file

@ -7,7 +7,6 @@ in
home.packages = [
(pkgs.writeShellApplication {
name = "rb";
runtimeInputs = [ pkgs.brightnessctl ];
text = ''
verb="switch"
if [ "$#" -ge 1 ]

View file

@ -26,7 +26,8 @@ def process_flake(flake: str) -> None:
dep_url = dep["url"]
# if not local path, continue
if not (
dep_url.startswith("path:") or dep_url.startswith("git+file:")
dep_url.startswith("path:")
or dep_url.startswith("git+file:")
):
continue
if dep.get("flake", True):