diff options
Diffstat (limited to '')
-rw-r--r-- | modules/home.legacy/conf/xdg/default.nix | 30 | ||||
-rwxr-xr-x | modules/home.legacy/conf/xdg/url_handler.sh | 10 |
2 files changed, 18 insertions, 22 deletions
diff --git a/modules/home.legacy/conf/xdg/default.nix b/modules/home.legacy/conf/xdg/default.nix index 4099720d..9751d806 100644 --- a/modules/home.legacy/conf/xdg/default.nix +++ b/modules/home.legacy/conf/xdg/default.nix @@ -1,22 +1,18 @@ { - sysLib, pkgs, - config, + lib, ... }: let - url_handler = sysLib.writeShellScript { - name = "url_handler"; - src = ./url_handler.sh; - keepPath = true; - # Naming dependencies for this will be difficult, as it depend on overridden packages. - dependencies = with pkgs; [ - rofi - libnotify - zathura + url_handler = pkgs.writeShellApplication { + name = "url-handler"; + text = builtins.readFile ./url_handler.sh; + inheritPath = false; + runtimeInputs = [ + pkgs.rofi + pkgs.libnotify + pkgs.zathura + pkgs.tskm ]; - replacementStrings = { - ALL_PROJECTS_PIPE = "${config.soispha.taskwarrior.projects.projects_pipe}"; - }; }; in { imports = [ @@ -39,10 +35,10 @@ in { }; }; desktopEntries = { - url_handler = { - name = "url_handler"; + url-handler = { + name = "url-handler"; genericName = "Web Browser"; - exec = "${url_handler}/bin/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 95eedffb..f15df384 100755 --- a/modules/home.legacy/conf/xdg/url_handler.sh +++ b/modules/home.legacy/conf/xdg/url_handler.sh @@ -1,9 +1,9 @@ -#!/usr/bin/env dash +#!/usr/bin/env sh -# shellcheck source=/dev/null -SHELL_LIBRARY_VERSION="2.1.2" . %SHELL_LIBRARY_PATH - -project="$(echo "%ALL_PROJECTS_PIPE|nvim|zathura|" | rofi -sep "|" -dmenu)" +project="$({ + tskm projects list + echo nvim zathura +} | rofi -sep "$(printf "\n")" -dmenu)" if [ "$project" = "nvim" ]; then "$TERMINAL" -e nvim "$1" |