same behaviour
This commit is contained in:
parent
54fa0ba864
commit
df757442a9
1 changed files with 5 additions and 5 deletions
|
@ -57,12 +57,12 @@ fish -c "abbr untgz 'tar -xvzf'"
|
||||||
fish -c "abbr cd.. 'cd ..'"
|
fish -c "abbr cd.. 'cd ..'"
|
||||||
if grep "WSL" /proc/version > /dev/null; # Only for WSL
|
if grep "WSL" /proc/version > /dev/null; # Only for WSL
|
||||||
then
|
then
|
||||||
abbr bigupdate 'sudo apt update && sudo apt upgrade -y && sudo apt autoremove -y && sudo do-release-upgrade'
|
fish -c "abbr bigupdate 'sudo apt update && sudo apt upgrade -y && sudo apt autoremove -y && sudo do-release-upgrade'"
|
||||||
abbr d 'explorer.exe .'
|
fish -c "abbr d 'explorer.exe .'"
|
||||||
else # if regular distro (i.e. Ubuntu)
|
else # if regular distro (i.e. Ubuntu)
|
||||||
abbr bigupdate 'sudo apt update && sudo apt upgrade -y && sudo apt autoremove -y && sudo snap refresh'
|
fish -c "abbr bigupdate 'sudo apt update && sudo apt upgrade -y && sudo apt autoremove -y && sudo snap refresh'"
|
||||||
abbr d 'nautilus . > /dev/null 2>&1 &;disown'
|
fish -c "abbr d 'nautilus . > /dev/null 2>&1 &;disown'"
|
||||||
abbr spotify 'LD_PRELOAD=/usr/local/lib/spotify-adblock.so spotify > /dev/null 2>&1 &;disown'
|
fish -c "abbr spotify 'LD_PRELOAD=/usr/local/lib/spotify-adblock.so spotify > /dev/null 2>&1 &;disown'"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo "You must log out to finish applying the changes."
|
echo "You must log out to finish applying the changes."
|
||||||
|
|
Reference in a new issue