dotfiles/.aliases

21 lines
582 B
Plaintext
Raw Permalink Normal View History

2021-04-16 05:11:09 +00:00
#!/usr/bin/env bash
# In addition to this file being valid POSIX, all RHS of `=` must use single
# quotes, and must be convertible to nu and fish (also see ~/dotscripts/gen/nu
# and check ~/.aliases.nu)
2021-09-29 04:23:00 +00:00
# Program aliases
2021-04-16 05:11:09 +00:00
alias x=exit
2021-09-29 04:23:00 +00:00
alias clr=clear
2021-04-16 05:11:09 +00:00
alias y=yadm
alias td=termdown
alias bom=bombadillo
2021-09-29 04:23:00 +00:00
alias syscu='systemctl --user'
alias edoom='emacs --with-profile=doom'
alias g=git
2023-08-15 13:08:37 +00:00
alias acme='acme -f /mnt/font/FiraCode-Regular/15/font'
alias la='ls -a'
2021-09-29 04:23:00 +00:00
# Shortcuts
alias apt-up='sudo apt update && sudo apt upgrade -y && sudo apt-get dist-upgrade -y && sudo apt autoremove'