diff options
Diffstat (limited to '')
-rw-r--r-- | modules/by-name/ta/taskwarrior/module.nix | 2 | ||||
-rw-r--r-- | modules/home.legacy/conf/xdg/default.nix | 22 | ||||
-rwxr-xr-x | modules/home.legacy/conf/xdg/url-handler.sh (renamed from modules/home.legacy/conf/xdg/url_handler.sh) | 0 |
3 files changed, 12 insertions, 12 deletions
diff --git a/modules/by-name/ta/taskwarrior/module.nix b/modules/by-name/ta/taskwarrior/module.nix index 354d3724..c5549ac9 100644 --- a/modules/by-name/ta/taskwarrior/module.nix +++ b/modules/by-name/ta/taskwarrior/module.nix @@ -35,7 +35,7 @@ enable_hook_dbg() { # TODO: We should probably be smarter with the debug detection <2025-04-04> - if echo "$2" | grep --quite 'rc.debug.hooks='; then + if echo "$2" | grep --quiet 'rc.debug.hooks='; then set -x mkdir --parents "$HOME/.cache/task" exec >>"$HOME/.cache/task/hook.log.$1" diff --git a/modules/home.legacy/conf/xdg/default.nix b/modules/home.legacy/conf/xdg/default.nix index 9751d806..ad0cd226 100644 --- a/modules/home.legacy/conf/xdg/default.nix +++ b/modules/home.legacy/conf/xdg/default.nix @@ -3,9 +3,9 @@ lib, ... }: let - url_handler = pkgs.writeShellApplication { + url-handler = pkgs.writeShellApplication { name = "url-handler"; - text = builtins.readFile ./url_handler.sh; + text = builtins.readFile ./url-handler.sh; inheritPath = false; runtimeInputs = [ pkgs.rofi @@ -23,22 +23,22 @@ in { mimeApps = { enable = true; defaultApplications = { - "application/pdf" = ["url_handler.desktop"]; - "application/x-pdf" = ["url_handler.desktop"]; + "application/pdf" = ["url-handler.desktop"]; + "application/x-pdf" = ["url-handler.desktop"]; - "text/html" = ["url_handler.desktop"]; - "text/xml" = ["url_handler.desktop"]; - "x-scheme-handler/http" = ["url_handler.desktop"]; - "x-scheme-handler/https" = ["url_handler.desktop"]; - "x-scheme-handler/about" = ["url_handler.desktop"]; - "x-scheme-handler/unknown" = ["url_handler.desktop"]; + "text/html" = ["url-handler.desktop"]; + "text/xml" = ["url-handler.desktop"]; + "x-scheme-handler/http" = ["url-handler.desktop"]; + "x-scheme-handler/https" = ["url-handler.desktop"]; + "x-scheme-handler/about" = ["url-handler.desktop"]; + "x-scheme-handler/unknown" = ["url-handler.desktop"]; }; }; desktopEntries = { url-handler = { name = "url-handler"; genericName = "Web Browser"; - exec = "${lib.getExe url_handler} %u"; + exec = "${lib.getExe url-handler} %u"; terminal = false; categories = [ "Application" diff --git a/modules/home.legacy/conf/xdg/url_handler.sh b/modules/home.legacy/conf/xdg/url-handler.sh index f15df384..f15df384 100755 --- a/modules/home.legacy/conf/xdg/url_handler.sh +++ b/modules/home.legacy/conf/xdg/url-handler.sh |