This commit is contained in:
Tykayn 2024-02-14 16:41:33 +01:00 committed by tykayn
parent cdaf5a2f37
commit 67d5953c38
7 changed files with 38 additions and 9 deletions

View file

@ -4,5 +4,6 @@
# done for my blog http://www.cipherbliss.com
#
# load variables
echo " chargement de bash aliases"
source ~/Nextcloud/ressources/workflow_nextcloud/public_workflow/workflow_variables.sh
source $WORKFLOW_PATH_PUBLIC/install/.bash_custom_aliases

View file

@ -1,10 +1,10 @@
#!/bin/bash
# these bash aliases are meant to be added in your user folder,
# in a file named: .bash_aliases (with the dot at the beginning)
# these bash aliases are meant to be added in your user folder,
# in a file named: .bash_aliases (with the dot at the beginning)
# done for my blog http://www.cipherbliss.com
#
# load variables
#echo "load functions to sync files"
# load variables
echo "bash custom aliases: load functions to sync files"
source ~/Nextcloud/ressources/workflow_nextcloud/public_workflow/workflow_variables.sh

View file

@ -75,6 +75,12 @@ plugins=(git cp colored-man-pages colorize command-not-found composer symfony2 p
source $ZSH/oh-my-zsh.sh
# User configuration
if [ -f ~/Nextcloud/ressources/workflow_nextcloud/workflow_variables.sh ]; then
. ~/Nextcloud/ressources/workflow_nextcloud/workflow_variables.sh
else
echo "/!\\ bashrc: fichier de variables workflow_nextcloud non trouvé:"
echo "~/Nextcloud/ressources/workflow_nextcloud/workflow_variables.sh"
fi
# export MANPATH="/usr/local/man:$MANPATH"
@ -100,4 +106,9 @@ if [[ -n $SSH_CONNECTION ]]; then
# alias zshconfig="mate ~/.zshrc"
# alias ohmyzsh="mate ~/.oh-my-zsh"
if [ "$debug" = true ]; then
echo "chargement des aliases ~/.bash_aliases"
fi
source ~/.bash_aliases