Compare commits
	
		
			3 Commits
		
	
	
		
			2140f57862
			...
			df6de3cdbb
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| 
						 | 
					df6de3cdbb | ||
| 
						 | 
					f651195b22 | ||
| 
						 | 
					640df9986c | 
							
								
								
									
										6
									
								
								bashrc
									
									
									
									
									
								
							
							
						
						
									
										6
									
								
								bashrc
									
									
									
									
									
								
							@@ -14,6 +14,9 @@ fi
 | 
				
			|||||||
# Source custom libs
 | 
					# Source custom libs
 | 
				
			||||||
if [ -d "$HOME"/.bash/libs ]; then for lib in "$HOME"/.bash/libs/*.bash; do source "$lib"; done; fi
 | 
					if [ -d "$HOME"/.bash/libs ]; then for lib in "$HOME"/.bash/libs/*.bash; do source "$lib"; done; fi
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					# Early customization
 | 
				
			||||||
 | 
					if [ -d "$HOME"/.bash/rc.before.d ]; then for file in "$HOME"/.bash/rc.before.d/*; do source "$file"; done; fi
 | 
				
			||||||
 | 
					
 | 
				
			||||||
# Source rc.d/*
 | 
					# Source rc.d/*
 | 
				
			||||||
if [ -d "$HOME"/.bash/rc.d ]; then for file in "$HOME"/.bash/rc.d/*; do source "$file"; done; fi
 | 
					if [ -d "$HOME"/.bash/rc.d ]; then for file in "$HOME"/.bash/rc.d/*; do source "$file"; done; fi
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -30,3 +33,6 @@ if [ -f "$HOME"/.bash_completion ]; then source "$HOME"/.bash_completion; fi
 | 
				
			|||||||
if [ -f "$HOME"/.bash/completion ]; then source "$HOME"/.bash/completion; fi
 | 
					if [ -f "$HOME"/.bash/completion ]; then source "$HOME"/.bash/completion; fi
 | 
				
			||||||
if [ -d "$HOME"/.bash/completion ]; then for file in "$HOME"/.bash/completion/*; do source "$file"; done; fi
 | 
					if [ -d "$HOME"/.bash/completion ]; then for file in "$HOME"/.bash/completion/*; do source "$file"; done; fi
 | 
				
			||||||
if [ -d "$HOME"/.bash/completion.d ]; then for file in "$HOME"/.bash/completion.d/*; do source "$file"; done; fi
 | 
					if [ -d "$HOME"/.bash/completion.d ]; then for file in "$HOME"/.bash/completion.d/*; do source "$file"; done; fi
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					# Late customization
 | 
				
			||||||
 | 
					if [ -d "$HOME"/.bash/rc.after.d ]; then for file in "$HOME"/.bash/rc.after.d/*; do source "$file"; done; fi
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										3
									
								
								rc.after.d/blesh
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										3
									
								
								rc.after.d/blesh
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,3 @@
 | 
				
			|||||||
 | 
					#!/bin/bash
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[[ ${BLE_VERSION-} ]] && ble-attach
 | 
				
			||||||
@@ -3,7 +3,4 @@
 | 
				
			|||||||
# ble.sh () installed from nix
 | 
					# ble.sh () installed from nix
 | 
				
			||||||
if (command -v blesh-share &>/dev/null); then
 | 
					if (command -v blesh-share &>/dev/null); then
 | 
				
			||||||
	source "$(blesh-share)"/ble.sh --attach=none # does not work currently
 | 
						source "$(blesh-share)"/ble.sh --attach=none # does not work currently
 | 
				
			||||||
	# ...
 | 
					 | 
				
			||||||
	[[ ${BLE_VERSION-} ]] && ble-attach
 | 
					 | 
				
			||||||
	# source "$(blesh-share)"/ble.sh
 | 
					 | 
				
			||||||
fi
 | 
					fi
 | 
				
			||||||
							
								
								
									
										12
									
								
								rc.d/direnv
									
									
									
									
									
								
							
							
						
						
									
										12
									
								
								rc.d/direnv
									
									
									
									
									
								
							@@ -1,11 +1,6 @@
 | 
				
			|||||||
#!/bin/bash
 | 
					#!/bin/bash
 | 
				
			||||||
 | 
					
 | 
				
			||||||
if ( which asdf &> /dev/null )
 | 
					if (asdf which direnv &>/dev/null); then
 | 
				
			||||||
then
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  if ( asdf which direnv &> /dev/null )
 | 
					 | 
				
			||||||
  then
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	# Hook direnv into your shell.
 | 
						# Hook direnv into your shell.
 | 
				
			||||||
	eval "$(asdf exec direnv hook bash)"
 | 
						eval "$(asdf exec direnv hook bash)"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -13,11 +8,8 @@ then
 | 
				
			|||||||
	direnv() { asdf exec direnv "$@"; }
 | 
						direnv() { asdf exec direnv "$@"; }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	return
 | 
						return
 | 
				
			||||||
  fi
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
elif ( which direnv &> /dev/null )
 | 
					 | 
				
			||||||
then
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					elif (command -v direnv &>/dev/null); then
 | 
				
			||||||
	# Hook direnv into your shell.
 | 
						# Hook direnv into your shell.
 | 
				
			||||||
	eval "$(direnv hook bash)"
 | 
						eval "$(direnv hook bash)"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										47
									
								
								rc.d/prompt
									
									
									
									
									
								
							
							
						
						
									
										47
									
								
								rc.d/prompt
									
									
									
									
									
								
							@@ -2,42 +2,41 @@
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
# Customize the prompt
 | 
					# Customize the prompt
 | 
				
			||||||
 | 
					
 | 
				
			||||||
POWERLINE_LOCATION=$(command -v powerline-go || command -v powerline) &>/dev/null
 | 
					USE_PROMPT=powerline-go
 | 
				
			||||||
POWERLINE=$(basename "$POWERLINE_LOCATION")
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
if [ "${POWERLINE}" = "powerline-go" ]; then
 | 
					case "$USE_PROMPT" in
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	echo "Using $POWERLINE"
 | 
					"starship")
 | 
				
			||||||
 | 
						if (command -v starship &>/dev/null); then
 | 
				
			||||||
 | 
							# echo "Using $USE_PROMPT prompt"
 | 
				
			||||||
 | 
							eval "$(starship init bash)"
 | 
				
			||||||
 | 
						else
 | 
				
			||||||
 | 
							echo "$USE_PROMPT command not found"
 | 
				
			||||||
 | 
						fi
 | 
				
			||||||
 | 
						;;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					"powerline-go")
 | 
				
			||||||
 | 
						if (command -v powerline-go &>/dev/null); then
 | 
				
			||||||
 | 
							# echo "Using $USE_PROMPT prompt"
 | 
				
			||||||
		function _update_ps1() {
 | 
							function _update_ps1() {
 | 
				
			||||||
		PS1=$($POWERLINE -jobs "$(jobs -p | wc -l)" -error $? -modules "ssh,host,wsl,user,cwd,direnv,venv,perms,git,jobs,exit,root" -modules-right "docker,docker-context,kube,terraform-workspace,termtitle" -newline)
 | 
								PS1=$(powerline-go -jobs "$(jobs -p | wc -l)" -error $? -modules "ssh,host,wsl,user,cwd,direnv,venv,perms,git,jobs,exit,root" -modules-right "docker,docker-context,kube,terraform-workspace,termtitle" -newline)
 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
 | 
							if [ "$TERM" != "linux" ]; then _prompt_command_add "_update_ps1"; fi
 | 
				
			||||||
 | 
						else
 | 
				
			||||||
 | 
							echo "$USE_PROMPT command not found"
 | 
				
			||||||
 | 
						fi
 | 
				
			||||||
 | 
						;;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if [ "$TERM" != "linux" ]; then _prompt_command_add "_update_ps1" ; fi
 | 
					*)
 | 
				
			||||||
 | 
						# Default simple prompt
 | 
				
			||||||
elif [ "${POWERLINE}" = "powerline" ]; then
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	echo "Using $POWERLINE"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	# Run powerline daemon
 | 
					 | 
				
			||||||
	powerline-daemon -q
 | 
					 | 
				
			||||||
	# Cache powerline location
 | 
					 | 
				
			||||||
	# To locate this directory, run: pip show powerline-status
 | 
					 | 
				
			||||||
	export POWERLINE_LOCATION="/home/xavier/.local/lib/python3.10//site-packages/powerline" # Set up powerline environment
 | 
					 | 
				
			||||||
	export POWERLINE_CONFIG_COMMAND=powerline-config
 | 
					 | 
				
			||||||
	export POWERLINE_BASH_CONTINUATION=1
 | 
					 | 
				
			||||||
	export POWERLINE_BASH_SELECT=1# Invoke binding script
 | 
					 | 
				
			||||||
	. "$POWERLINE_LOCATION/bindings/bash/powerline.sh"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
else
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	if [ "$UID" -eq 0 ]; then
 | 
						if [ "$UID" -eq 0 ]; then
 | 
				
			||||||
		export PS1='\[\e[01;31m\]\u@\h\[\e[01;34m\] \w \$\[\e[0m\] '
 | 
							export PS1='\[\e[01;31m\]\u@\h\[\e[01;34m\] \w \$\[\e[0m\] '
 | 
				
			||||||
	else
 | 
						else
 | 
				
			||||||
		export PS1='\[\e[01;32m\]\u@\h\[\e[01;34m\] \w \$\[\e[0m\] '
 | 
							export PS1='\[\e[01;32m\]\u@\h\[\e[01;34m\] \w \$\[\e[0m\] '
 | 
				
			||||||
	fi
 | 
						fi
 | 
				
			||||||
 | 
						;;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
fi
 | 
					esac
 | 
				
			||||||
 | 
					
 | 
				
			||||||
# Limit the path to 3 levels
 | 
					# Limit the path to 3 levels
 | 
				
			||||||
PROMPT_DIRTRIM=3
 | 
					PROMPT_DIRTRIM=3
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user