Compare commits
	
		
			3 Commits
		
	
	
		
			master
			...
			e39995c5ee
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| 
						 | 
					e39995c5ee | ||
| 
						 | 
					b05ba3c9a3 | ||
| 
						 | 
					a120bce087 | 
							
								
								
									
										1
									
								
								3rd-party/complete-alias
									
									
									
									
										vendored
									
									
								
							
							
								
								
								
								
								
							
						
						
									
										1
									
								
								3rd-party/complete-alias
									
									
									
									
										vendored
									
									
								
							 Submodule 3rd-party/complete-alias deleted from 7f2555c2fe
									
								
							@@ -1,7 +1,5 @@
 | 
			
		||||
alias cdrepo='cd ~/Repositories/'
 | 
			
		||||
alias cdgithub='cd ~/Repositories/Github'
 | 
			
		||||
alias cdgitlab='cd ~/Repositories/Gitlab'
 | 
			
		||||
alias cdgitea='cd ~/Repositories/Gitea'
 | 
			
		||||
alias cdgh=cdgithub
 | 
			
		||||
alias cdgithub='cd ~/Repositories/Github'
 | 
			
		||||
alias cdgl=cdgitlab
 | 
			
		||||
alias cdgt=cdgitea
 | 
			
		||||
alias cdgh=cdgithub
 | 
			
		||||
 
 | 
			
		||||
@@ -1,7 +0,0 @@
 | 
			
		||||
#!/bin/bash
 | 
			
		||||
 | 
			
		||||
# [ "$TERM" = "xterm-kitty" ] && alias ssh="kitty +kitten ssh"
 | 
			
		||||
if [ -n "${KITTY_INSTALLATION_DIR}" ]; then
 | 
			
		||||
  alias ssh="kitty +kitten ssh"
 | 
			
		||||
  alias icat="kitty +kitten icat"
 | 
			
		||||
fi
 | 
			
		||||
@@ -2,6 +2,5 @@
 | 
			
		||||
 | 
			
		||||
if (command -v lsd &> /dev/null)
 | 
			
		||||
then
 | 
			
		||||
  alias ls='lsd'
 | 
			
		||||
  alias lt='lsd --tree'
 | 
			
		||||
  alias ls=lsd
 | 
			
		||||
fi
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										7
									
								
								bashrc
									
									
									
									
									
								
							
							
						
						
									
										7
									
								
								bashrc
									
									
									
									
									
								
							@@ -28,6 +28,7 @@ _source_dir_files "${BASEDIR}"/libs
 | 
			
		||||
 | 
			
		||||
# Source 3rd party libs if they exists
 | 
			
		||||
_source_file_if_exists "${BASEDIR}/3rd-party/complete-alias/complete_alias"
 | 
			
		||||
# _source_file_if_exists "${BASEDIR}/3rd-party/z/z.sh" # FIX: Problème de gestion de la variable PROMPT_COMMAND
 | 
			
		||||
 | 
			
		||||
# Early customization
 | 
			
		||||
_source_dir_files "${BASEDIR}"/rc.before.d
 | 
			
		||||
@@ -36,12 +37,6 @@ _source_dir_files "${BASEDIR}"/rc.before.d
 | 
			
		||||
_source_dir_files "${BASEDIR}"/rc
 | 
			
		||||
_source_dir_files "${BASEDIR}"/rc.d
 | 
			
		||||
 | 
			
		||||
# Source functions definitions
 | 
			
		||||
_source_file_if_exists ~/.bash_functions
 | 
			
		||||
_source_file_if_exists "${BASEDIR}"/functions
 | 
			
		||||
_source_dir_files "${BASEDIR}"/functions
 | 
			
		||||
_source_dir_files "${BASEDIR}"/functions.d
 | 
			
		||||
 | 
			
		||||
# Source alias definitions
 | 
			
		||||
_source_file_if_exists ~/.bash_aliases
 | 
			
		||||
_source_file_if_exists "${BASEDIR}"/aliases
 | 
			
		||||
 
 | 
			
		||||
@@ -1,5 +0,0 @@
 | 
			
		||||
#!/bin/bash
 | 
			
		||||
 | 
			
		||||
if (command -v chezmoi &>/dev/null); then
 | 
			
		||||
	source <(chezmoi completion bash)
 | 
			
		||||
fi
 | 
			
		||||
@@ -1,3 +1,4 @@
 | 
			
		||||
 | 
			
		||||
#!/bin/bash
 | 
			
		||||
 | 
			
		||||
if (command -v flux &>/dev/null); then
 | 
			
		||||
 
 | 
			
		||||
@@ -1,5 +1,5 @@
 | 
			
		||||
#!/bin/bash
 | 
			
		||||
 | 
			
		||||
if (command -v mise &>/dev/null); then
 | 
			
		||||
	source <(mise completion bash --include-bash-completion-lib)
 | 
			
		||||
	source <(mise completion bash)
 | 
			
		||||
fi
 | 
			
		||||
 
 | 
			
		||||
@@ -1,5 +0,0 @@
 | 
			
		||||
#!/bin/bash
 | 
			
		||||
 | 
			
		||||
if (command -v tea &>/dev/null); then
 | 
			
		||||
	source <(tea completion bash)
 | 
			
		||||
fi
 | 
			
		||||
@@ -1,18 +0,0 @@
 | 
			
		||||
#!/bin/bash
 | 
			
		||||
 | 
			
		||||
function devenv() {
 | 
			
		||||
 | 
			
		||||
  local status
 | 
			
		||||
 | 
			
		||||
  # Get LXC container status
 | 
			
		||||
  status=$(lxc info devenv | yq .Status)
 | 
			
		||||
 | 
			
		||||
  # Start container if not running
 | 
			
		||||
  if [ "${status}" != "RUNNING" ]; then lxc start devenv; fi
 | 
			
		||||
 | 
			
		||||
  # Rename tmux window if inside tmux
 | 
			
		||||
  if [ -n "$TMUX" ]; then tmux rename-window "devenv"; fi
 | 
			
		||||
 | 
			
		||||
  # Login as user xavier
 | 
			
		||||
  lxc exec devenv -- login -f xavier
 | 
			
		||||
}
 | 
			
		||||
@@ -1,6 +1,7 @@
 | 
			
		||||
#!/bin/bash
 | 
			
		||||
 | 
			
		||||
function term_change_title {
 | 
			
		||||
function term_change_title
 | 
			
		||||
{
 | 
			
		||||
	case $TERM in
 | 
			
		||||
		# Change the window title of X terminals 
 | 
			
		||||
		xterm*|rxvt*|urxvt*|Eterm)
 | 
			
		||||
@@ -8,7 +9,7 @@ function term_change_title {
 | 
			
		||||
			;;
 | 
			
		||||
 | 
			
		||||
		# Change the window title of screen terminals 
 | 
			
		||||
	screen* | tmux*)
 | 
			
		||||
		screen*)
 | 
			
		||||
			echo -ne "\033k${1}\033\\"
 | 
			
		||||
			;;
 | 
			
		||||
	esac
 | 
			
		||||
 
 | 
			
		||||
@@ -1,5 +1,5 @@
 | 
			
		||||
#!/bin/bash
 | 
			
		||||
 | 
			
		||||
if (command -v keychain &>/dev/null); then
 | 
			
		||||
  eval "$(keychain --inherit any --quiet --noask ~/.ssh/id_{rsa,ed25519})"
 | 
			
		||||
  eval "$(keychain --eval --noask ~/.ssh/{id_ed25519,id_rsa_native})"
 | 
			
		||||
fi
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										47
									
								
								rc.d/fzf
									
									
									
									
									
								
							
							
						
						
									
										47
									
								
								rc.d/fzf
									
									
									
									
									
								
							@@ -1,47 +0,0 @@
 | 
			
		||||
#!/bin/bash
 | 
			
		||||
 | 
			
		||||
if (command -v fzf &>/dev/null); then
 | 
			
		||||
 | 
			
		||||
  source <(fzf --bash)
 | 
			
		||||
 | 
			
		||||
  # Navigation vers un répertoire
 | 
			
		||||
  FZF_ALT_C_OPTS="$(
 | 
			
		||||
    cat <<'EOF'
 | 
			
		||||
      --height 60%
 | 
			
		||||
      --border sharp
 | 
			
		||||
      --layout reverse
 | 
			
		||||
      --prompt ' '
 | 
			
		||||
      --pointer ❯
 | 
			
		||||
      --marker ✔
 | 
			
		||||
EOF
 | 
			
		||||
  )"
 | 
			
		||||
  export FZF_ALT_C_OPTS
 | 
			
		||||
 | 
			
		||||
  # Selection de fichiers
 | 
			
		||||
  FZF_CTRL_T_OPTS="$(
 | 
			
		||||
    cat <<'EOF'
 | 
			
		||||
      --height 60%
 | 
			
		||||
      --border sharp
 | 
			
		||||
      --layout reverse
 | 
			
		||||
      --prompt ' '
 | 
			
		||||
      --pointer ❯
 | 
			
		||||
      --marker ✔
 | 
			
		||||
      --preview="bat --color=always --style=-header {}"
 | 
			
		||||
EOF
 | 
			
		||||
  )"
 | 
			
		||||
  export FZF_CTRL_T_OPTS
 | 
			
		||||
 | 
			
		||||
  # Navigation dans l'historique
 | 
			
		||||
  FZF_CTRL_R_OPTS="$(
 | 
			
		||||
    cat <<'EOF'
 | 
			
		||||
      --height 60%
 | 
			
		||||
      --border sharp
 | 
			
		||||
      --layout reverse
 | 
			
		||||
      --prompt ' '
 | 
			
		||||
      --pointer ❯
 | 
			
		||||
      --marker ✔
 | 
			
		||||
EOF
 | 
			
		||||
  )"
 | 
			
		||||
  export FZF_CTRL_R_OPTS
 | 
			
		||||
 | 
			
		||||
fi
 | 
			
		||||
							
								
								
									
										10
									
								
								rc.d/tmux
									
									
									
									
									
								
							
							
						
						
									
										10
									
								
								rc.d/tmux
									
									
									
									
									
								
							@@ -8,13 +8,13 @@ if (command -v tmux &>/dev/null); then
 | 
			
		||||
      nb_sessions_attached=$(tmux list-session | grep -c "attached")
 | 
			
		||||
      nb_sessions_detached=$(tmux list-session | grep -c -v "attached")
 | 
			
		||||
 | 
			
		||||
      echo_info "tmux : found ${nb_sessions} session(s)"
 | 
			
		||||
      echo_info "Found ${nb_sessions} tmux session(s)"
 | 
			
		||||
 | 
			
		||||
      echo "➤ ${nb_sessions_attached} session(s) attached"
 | 
			
		||||
      tmux list-sessions | grep "attached" | sed -e 's/^/    • /'
 | 
			
		||||
      echo " * ${nb_sessions_attached} attached"
 | 
			
		||||
      tmux list-sessions | grep "attached" | sed -e 's/^/     - /'
 | 
			
		||||
 | 
			
		||||
      echo "➤ ${nb_sessions_detached} session(s) detached"
 | 
			
		||||
      tmux list-sessions | grep -v "attached" | sed -e 's/^/    • /'
 | 
			
		||||
      echo " * ${nb_sessions_detached} detached"
 | 
			
		||||
      tmux list-sessions | grep -v "attached" | sed -e 's/^/     - /'
 | 
			
		||||
 | 
			
		||||
    fi
 | 
			
		||||
  fi
 | 
			
		||||
 
 | 
			
		||||
@@ -1,5 +0,0 @@
 | 
			
		||||
#!/bin/bash
 | 
			
		||||
 | 
			
		||||
if (command -v zoxide &>/dev/null); then
 | 
			
		||||
  eval "$(zoxide init bash)"
 | 
			
		||||
fi
 | 
			
		||||
		Reference in New Issue
	
	Block a user