From 246f00f9386ae77b07e41c588e41cfb15ac1bc07 Mon Sep 17 00:00:00 2001 From: Benedikt Peetz Date: Mon, 31 Mar 2025 16:50:42 +0200 Subject: fix(modules/lf/commands/dragon-*): Use new `dragon-drop` name The old name conflicted with KDE's dragon media player. --- modules/by-name/lf/lf/commands/default.nix | 6 +++--- modules/by-name/lf/lf/commands/scripts/dragon.sh | 2 +- modules/by-name/lf/lf/commands/scripts/dragon_individual.sh | 2 +- modules/by-name/lf/lf/commands/scripts/dragon_stay.sh | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/modules/by-name/lf/lf/commands/default.nix b/modules/by-name/lf/lf/commands/default.nix index 9a709168..42508566 100644 --- a/modules/by-name/lf/lf/commands/default.nix +++ b/modules/by-name/lf/lf/commands/default.nix @@ -83,15 +83,15 @@ in { dragon = pipe { name = "dragon"; - dependencies = [pkgs.xdragon]; + dependencies = [pkgs.dragon-drop]; }; dragon_individual = pipe { name = "dragon_individual"; - dependencies = [pkgs.xdragon]; + dependencies = [pkgs.dragon-drop]; }; dragon_stay = pipe { name = "dragon_stay"; - dependencies = [pkgs.xdragon]; + dependencies = [pkgs.dragon-drop]; }; execute = shell { diff --git a/modules/by-name/lf/lf/commands/scripts/dragon.sh b/modules/by-name/lf/lf/commands/scripts/dragon.sh index 299d7bbe..916c09ee 100755 --- a/modules/by-name/lf/lf/commands/scripts/dragon.sh +++ b/modules/by-name/lf/lf/commands/scripts/dragon.sh @@ -13,5 +13,5 @@ while read -r file; do set -- "$@" "$file" done <"$(echo "$fx" | tmp)" -dragon --all --and-exit "$@" +dragon-drop --all --and-exit "$@" # vim: ft=sh diff --git a/modules/by-name/lf/lf/commands/scripts/dragon_individual.sh b/modules/by-name/lf/lf/commands/scripts/dragon_individual.sh index 1cb603d9..c6b3b2a6 100755 --- a/modules/by-name/lf/lf/commands/scripts/dragon_individual.sh +++ b/modules/by-name/lf/lf/commands/scripts/dragon_individual.sh @@ -13,5 +13,5 @@ while read -r file; do set -- "$@" "$file" done <"$(echo "$fx" | tmp)" -dragon "$@" +dragon-drop "$@" # vim: ft=sh diff --git a/modules/by-name/lf/lf/commands/scripts/dragon_stay.sh b/modules/by-name/lf/lf/commands/scripts/dragon_stay.sh index 4a16e802..7296a6b9 100755 --- a/modules/by-name/lf/lf/commands/scripts/dragon_stay.sh +++ b/modules/by-name/lf/lf/commands/scripts/dragon_stay.sh @@ -13,5 +13,5 @@ while read -r file; do set -- "$@" "$file" done <"$(echo "$fx" | tmp)" -dragon --all "$@" +dragon-drop --all "$@" # vim: ft=sh -- cgit 1.4.1