From 09af3d64f3db295fd4a7feabc59b9bdec634f4ae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rodolphe=20Br=C3=A9ard?= Date: Tue, 6 May 2025 15:00:50 +0200 Subject: [PATCH] sudo-rs --- .config/fish/functions/sudo.fish | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 .config/fish/functions/sudo.fish diff --git a/.config/fish/functions/sudo.fish b/.config/fish/functions/sudo.fish new file mode 100644 index 0000000..d87e869 --- /dev/null +++ b/.config/fish/functions/sudo.fish @@ -0,0 +1,7 @@ +function sudo + if type -q sudo-rs + command sudo-rs $argv + else + command sudo $argv + end +end