You've already forked personal-linux-config
							
							
		
			
				
	
	
		
			16 lines
		
	
	
		
			586 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			586 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
# Source all the overrides in this folder
 | 
						|
for source in $(find "$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" &> /dev/null && pwd)" -type f | grep -Ev "_all|terminal_fancyfying"); do
 | 
						|
  . "${source}"
 | 
						|
done
 | 
						|
. "$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" &> /dev/null && pwd)/terminal_fancyfying_${TERMINAL_FANCYFY}"
 | 
						|
 | 
						|
# If the file ~/.bash_sources exist, source every line it contains
 | 
						|
if [ -f ~/.bash_sources ]; then
 | 
						|
  while IFS= read -r line; do
 | 
						|
    # Skip empty lines and comments (#)
 | 
						|
    if [ -n "$line" ] && ! [[ "$line" == \#* ]]; then
 | 
						|
      . "$line"
 | 
						|
    fi
 | 
						|
  done < ~/.bash_sources
 | 
						|
fi
 |