about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2025-03-31 16:50:42 +0200
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2025-03-31 16:50:42 +0200
commit246f00f9386ae77b07e41c588e41cfb15ac1bc07 (patch)
tree50f3f09b1bb846647a93488d201247c0f093ee57
parentfix(modules/{atuin,zsh}): Avoid atuin keymaps overriding mine (diff)
downloadnixos-config-246f00f9386ae77b07e41c588e41cfb15ac1bc07.zip
fix(modules/lf/commands/dragon-*): Use new `dragon-drop` name
The old name conflicted with KDE's dragon media player.
-rw-r--r--modules/by-name/lf/lf/commands/default.nix6
-rwxr-xr-xmodules/by-name/lf/lf/commands/scripts/dragon.sh2
-rwxr-xr-xmodules/by-name/lf/lf/commands/scripts/dragon_individual.sh2
-rwxr-xr-xmodules/by-name/lf/lf/commands/scripts/dragon_stay.sh2
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