10 lines
251 B
Fish
10 lines
251 B
Fish
|
#!/bin/env fish
|
||
|
begin
|
||
|
set -l dir (status dirname)
|
||
|
source "$dir/../../Scripts/profile-base.fish"
|
||
|
|
||
|
function installFishProfile -a name title
|
||
|
addProfileStatement "$name" "$title" /bin/fish fish /etc/fish/conf.d $argv[3..]
|
||
|
end
|
||
|
end
|