dotfiles/.config/fish/functions/sudo.fish
2025-05-06 15:00:50 +02:00

7 lines
115 B
Fish

function sudo
if type -q sudo-rs
command sudo-rs $argv
else
command sudo $argv
end
end