mirror of
https://gitea.blesmrt.net/mikaela/shell-things.git
synced 2024-11-10 02:29:22 +01:00
suppress noise
This commit is contained in:
parent
76b088e0ce
commit
838b486251
@ -5,11 +5,11 @@
|
|||||||
# thread of what the fluff was I doing again.
|
# thread of what the fluff was I doing again.
|
||||||
|
|
||||||
if [ $(hash xdg-user-dir 2> /dev/null) ] && [ $(hash xdg-user-dir-update 2> /dev/null) ]; then
|
if [ $(hash xdg-user-dir 2> /dev/null) ] && [ $(hash xdg-user-dir-update 2> /dev/null) ]; then
|
||||||
echo "50-xdg-screenshots.sh ok"
|
echo "50-xdg-screenshots.sh ok" > /dev/null 2>&1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ $(xdg-user-dir SCREENSHOTS) != $(xdg-user-dir) ]]; then
|
if [[ $(xdg-user-dir SCREENSHOTS) != $(xdg-user-dir) ]]; then
|
||||||
echo "50-xdg-screenshots.sh ok"
|
echo "50-xdg-screenshots.sh ok" > /dev/null 2>&1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Check if the user has a locale preference
|
# Check if the user has a locale preference
|
||||||
|
@ -281,13 +281,13 @@ fi
|
|||||||
|
|
||||||
# https://github.com/nvm-sh/nvm
|
# https://github.com/nvm-sh/nvm
|
||||||
if [ -d ~/.nvm ]; then
|
if [ -d ~/.nvm ]; then
|
||||||
. ~/.nvm/nvm.sh
|
. ~/.nvm/nvm.sh > /dev/null 2>&1
|
||||||
. ~/.nvm/bash_completion
|
. ~/.nvm/bash_completion > /dev/null 2>&1
|
||||||
elif [ -d /home/linuxbrew/.linuxbrew/opt/nvm ]; then
|
elif [ -d /home/linuxbrew/.linuxbrew/opt/nvm ]; then
|
||||||
mkdir -p /home/linuxbrew/.nvm
|
mkdir -p /home/linuxbrew/.nvm
|
||||||
export NVM_DIR=/home/linuxbrew/.nvm
|
export NVM_DIR=/home/linuxbrew/.nvm
|
||||||
[ -s "/home/linuxbrew/.linuxbrew/opt/nvm/nvm.sh" ] && \. "/home/linuxbrew/.linuxbrew/opt/nvm/nvm.sh" # This loads nvm
|
[ -s "/home/linuxbrew/.linuxbrew/opt/nvm/nvm.sh" ] && \. "/home/linuxbrew/.linuxbrew/opt/nvm/nvm.sh >/dev/null 2>&1" # This loads nvm
|
||||||
[ -s "/home/linuxbrew/.linuxbrew/opt/nvm/etc/bash_completion.d/nvm" ] && \. "/home/linuxbrew/.linuxbrew/opt/nvm/etc/bash_completion.d/nvm" # This loads nvm bash_completion
|
[ -s "/home/linuxbrew/.linuxbrew/opt/nvm/etc/bash_completion.d/nvm" ] && \. "/home/linuxbrew/.linuxbrew/opt/nvm/etc/bash_completion.d/nvm >/dev/null 2>&1" # This loads nvm bash_completion
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# https://github.com/rbenv/rbenv
|
# https://github.com/rbenv/rbenv
|
||||||
|
4
rc/zshrc
4
rc/zshrc
@ -240,8 +240,8 @@ if [ -d ~/.nvm ]; then
|
|||||||
elif [ -d /home/linuxbrew/.linuxbrew/opt/nvm ]; then
|
elif [ -d /home/linuxbrew/.linuxbrew/opt/nvm ]; then
|
||||||
mkdir -p /home/linuxbrew/.nvm
|
mkdir -p /home/linuxbrew/.nvm
|
||||||
export NVM_DIR=/home/linuxbrew/.nvm
|
export NVM_DIR=/home/linuxbrew/.nvm
|
||||||
[ -s "/home/linuxbrew/.linuxbrew/opt/nvm/nvm.sh" ] && \. "/home/linuxbrew/.linuxbrew/opt/nvm/nvm.sh" # This loads nvm
|
[ -s "/home/linuxbrew/.linuxbrew/opt/nvm/nvm.sh" ] && \. "/home/linuxbrew/.linuxbrew/opt/nvm/nvm.sh >/dev/null 2>&1" # This loads nvm
|
||||||
[ -s "/home/linuxbrew/.linuxbrew/opt/nvm/etc/bash_completion.d/nvm" ] && \. "/home/linuxbrew/.linuxbrew/opt/nvm/etc/bash_completion.d/nvm" # This loads nvm bash_completion
|
[ -s "/home/linuxbrew/.linuxbrew/opt/nvm/etc/bash_completion.d/nvm" ] && \. "/home/linuxbrew/.linuxbrew/opt/nvm/etc/bash_completion.d/nvm >/dev/null 2>&1" # This loads nvm bash_completion
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# https://github.com/rbenv/rbenv
|
# https://github.com/rbenv/rbenv
|
||||||
|
Loading…
Reference in New Issue
Block a user