PortValhalla/scripts/Common/Software/bash/main.fish

20 lines
512 B
Fish
Executable file

#!/bin/env fish
begin
set -l dir (status dirname)
source "$dir/../../Scripts/software.fish"
function configureSW -V dir
begin
printf %s\n \
"" \
"# profile" \
"while IFS= read -r -d '' file;" \
"do" \
'source "$file";' \
'done < <(find {/etc,~/.config}/bash/conf.d/* -print0 2> /dev/null);'
end | sudo tee -a /etc/bash.bashrc &> /dev/null
end
runInstaller $argv
end