all repos — nixfiles @ dfd1a5d8d7754dfef6a7e535c93675a2019104d3

System and user configuration, managed by nix and home-manager

fish: remove very basic "open" function
Alan Pearce alan@alanpearce.eu
Sun, 09 Feb 2025 19:24:31 +0100
commit

dfd1a5d8d7754dfef6a7e535c93675a2019104d3

parent

44320cba3ff052ffbc63d902c282d9cbe9ce3fd8

1 files changed, 1 insertions(+), 18 deletions(-)

jump to
M user/settings/fish.nixuser/settings/fish.nix
@@ -59,24 +59,7 @@ };     functions = {
       ds = "du -hd1 $argv[1] | sort -h";
       last_history_item = "echo $history[1]";
-    } // (lib.attrsets.optionalAttrs pkgs.stdenv.isLinux {
-      open = ''
-        argparse h/help a/application -- $argv
-        or return
-
-        if set -ql _flag_help
-           echo "open [-h|--help] [-a application] [arguments...]"
-           return 1
-        end
-
-        if set -ql _flag_application
-           # TODO: support reverse-domain- named files (e.g. org.kde.kate.desktop)
-           ${pkgs.gtk3}/bin/gtk-launch $argv[1]
-        else
-          xdg-open $argv
-        end
-      '';
-    });
+    };
   };
   xdg.configFile."fish/completions" = {
     recursive = true;