2024-07-16 01:36:51 +00:00
|
|
|
#!/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;" \
|
2024-10-06 19:25:34 +00:00
|
|
|
do \
|
2024-09-21 00:12:31 +00:00
|
|
|
' source "$file";' \
|
2024-07-16 01:36:51 +00:00
|
|
|
'done < <(find {/etc,~/.config}/bash/conf.d/* -print0 2> /dev/null);'
|
2024-10-06 19:25:34 +00:00
|
|
|
end | sudo tee -a /etc/bash.bashrc &>/dev/null
|
2024-07-16 01:36:51 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
runInstaller $argv
|
|
|
|
end
|