12 lines
249 B
Bash
12 lines
249 B
Bash
|
#!/bin/bash
|
||
|
pushd "${BASH_SOURCE%/*}" > /dev/null;
|
||
|
. "../../Scripts/profile-base.sh";
|
||
|
|
||
|
function addFishProfile() {
|
||
|
name="$1";
|
||
|
title="$2";
|
||
|
addProfileStatement "$name" "$title" "/bin/fish" "/etc/fish/conf.d" "${@:3}";
|
||
|
}
|
||
|
|
||
|
popd > /dev/null;
|