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