16 lines
299 B
Fish
Executable file
16 lines
299 B
Fish
Executable file
#!/bin/env fish
|
|
begin
|
|
set -l dir (status dirname)
|
|
source "$dir/../../Scripts/software.fish"
|
|
|
|
function installSW
|
|
pacinst sudo
|
|
end
|
|
|
|
function configureSW
|
|
echo "%wheel ALL=(ALL:ALL) ALL" | sudo tee /etc/sudoers.d/wheel > /dev/null
|
|
end
|
|
|
|
runInstaller $argv
|
|
end
|