qubes-apply

python script to automate qubes saltstack

git clone https://9o.is/git/qubes-apply.git

sudo.fish

(228B)


      1 function sudo -d "sudo wrapper that handles aliases"
      2     if functions -q -- $argv[1]
      3         set -l new_args (string join ' ' -- (string escape -- $argv))
      4         set argv fish -c "$new_args"
      5     end
      6 
      7     command sudo $argv
      8 end