What are your most liked alias for long commands or just to give them better names.

Mine are:

alias load="source .load.sh"
alias eload="$EDITOR .load.sh"
alias gpush="git push"
alias gadd="git add --all"
alias gcommit="git commit -m "
alias gst="git status -s"
alias gpull="git pull"
  • @Raphael
    link
    English
    1
    edit-2
    1 year ago

    Updating Silverblue KDE from the terminal is way too convoluted. Sadly Fedora won’t do anything as they only care about the GUI experience.

    # Defined in /home/raphael/.config/fish/functions/update.fish @ line 1
    function update --description 'Update and cleanup system'
        fedora sudo dnf update -y
        rpm-ostree update
        flatpak update -y
        flatpak uninstall --unused
        flatpak uninstall --delete-data
    end