diff --git a/.config/lf/lfrc b/.config/lf/lfrc
index 0f4e7c76..f3d5af9c 100644
--- a/.config/lf/lfrc
+++ b/.config/lf/lfrc
@@ -27,13 +27,13 @@ cmd open-with ${{
 }}
 
 cmd trash &{{
-    trash-cli put $fx
+    trash-util put $fx
     lf -remote "send load"
 }}
 
 cmd trash-restore ${{
     fileid=$(
-        trash-cli list "$PWD" |
+        trash-util list "$PWD" |
             fzf -d '\0' \
                 --with-nth=1 \
                 --nth=1 \
@@ -41,7 +41,7 @@ cmd trash-restore ${{
             cut -d '' -f 2
     )
     [ -z "$fileid" ] && exit
-    trash-cli restore $fileid
+    trash-util restore $fileid
 }}
 
 cmd lazygit ${{