add flatpak to upgrade alias

This commit is contained in:
John Mertz 2023-09-05 10:43:11 -06:00
parent c5f5d4cd1f
commit cc587e25f2
3 changed files with 9 additions and 7 deletions

View File

@ -54,12 +54,6 @@ alias isdistrobox='[ -f "/run/.toolboxenv" ] && grep -oP "(?<=name=\")[^\";]+" /
# Flag that the directory was just changed (used with prompt)
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
export OS=`grep -P '^ID=' /etc/os-release | cut -d'=' -f2 | sed 's/"//g'`
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
fi
fi
if [ "$(isdistrobox)" ]; then
source "$HOME/.dotfiles/bash/bash_aliases.distrobox"
else
source "$HOME/.dotfiles/bash/bash_aliases.host"
fi

View File

@ -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"

View File

@ -6,3 +6,4 @@ alias butane='podman run --rm --interactive \
--security-opt label=disable \
--volume ${PWD}:/pwd --workdir /pwd \
quay.io/coreos/butane:release'
alias upgrade="$(alias upgrade | cut -d"'" -f 2); sudo flatpak upgrade -y; sudo flatpak uninstall --unused""