12 lines
219 B
Fish
12 lines
219 B
Fish
|
#!/bin/env fish
|
||
|
begin
|
||
|
set -l dir (status dirname)
|
||
|
source "$dir/../../Scripts/software.fish"
|
||
|
|
||
|
function configureSW -V dir
|
||
|
sudo cp "$dir/firefox.sh" /etc/profile.d/
|
||
|
end
|
||
|
|
||
|
runInstaller $argv
|
||
|
end
|