add flatpak to upgrade alias
This commit is contained in:
parent
c5f5d4cd1f
commit
cc587e25f2
|
@ -54,12 +54,6 @@ alias isdistrobox='[ -f "/run/.toolboxenv" ] && grep -oP "(?<=name=\")[^\";]+" /
|
||||||
# Flag that the directory was just changed (used with prompt)
|
# Flag that the directory was just changed (used with prompt)
|
||||||
alias cd='export DIRCHANGED="1"; cd'
|
alias cd='export DIRCHANGED="1"; cd'
|
||||||
|
|
||||||
if [ "$(isdistrobox)" ]; then
|
|
||||||
source "$HOME/.dotfiles/bash/bash_aliases.distrobox"
|
|
||||||
else
|
|
||||||
source "$HOME/.dotfiles/bash/bash_aliases.host"
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ -f /etc/os-release ]; then
|
if [ -f /etc/os-release ]; then
|
||||||
export OS=`grep -P '^ID=' /etc/os-release | cut -d'=' -f2 | sed 's/"//g'`
|
export OS=`grep -P '^ID=' /etc/os-release | cut -d'=' -f2 | sed 's/"//g'`
|
||||||
if [ -f ${HOME}/.dotfiles/bash/bash_aliases.$OS ]; then
|
if [ -f ${HOME}/.dotfiles/bash/bash_aliases.$OS ]; then
|
||||||
|
@ -73,3 +67,10 @@ if [ -f /etc/os-release ]; then
|
||||||
source ${HOME}/.dotfiles/bash/bash_aliases.$OS-$OSVARIANT
|
source ${HOME}/.dotfiles/bash/bash_aliases.$OS-$OSVARIANT
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if [ "$(isdistrobox)" ]; then
|
||||||
|
source "$HOME/.dotfiles/bash/bash_aliases.distrobox"
|
||||||
|
else
|
||||||
|
source "$HOME/.dotfiles/bash/bash_aliases.host"
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
alias upgrade="sudo apt-get update; sudo apt-get full-upgrade -y; sudo apt-get autoremove -y; sudo apt-get clean -y;"
|
alias upgrade="sudo apt-get update; sudo apt-get full-upgrade -y; sudo apt-get autoremove -y; sudo apt-get clean -y"
|
||||||
|
|
|
@ -6,3 +6,4 @@ alias butane='podman run --rm --interactive \
|
||||||
--security-opt label=disable \
|
--security-opt label=disable \
|
||||||
--volume ${PWD}:/pwd --workdir /pwd \
|
--volume ${PWD}:/pwd --workdir /pwd \
|
||||||
quay.io/coreos/butane:release'
|
quay.io/coreos/butane:release'
|
||||||
|
alias upgrade="$(alias upgrade | cut -d"'" -f 2); sudo flatpak upgrade -y; sudo flatpak uninstall --unused""
|
||||||
|
|
Loading…
Reference in New Issue