mirror of
https://github.com/GeorgeSG/dotfiles.git
synced 2026-09-04 08:28:44 +00:00
Added .bash_aliases file
This commit is contained in:
@@ -0,0 +1,38 @@
|
||||
# Custom Commands
|
||||
|
||||
alias grep="grep --color=auto"
|
||||
|
||||
alias logout="xfce4-session-logout --logout"
|
||||
alias reboot="xfce4-session-logout --reboot"
|
||||
|
||||
alias install="sudo apt-get install"
|
||||
alias purge="sudo apt-get purge"
|
||||
alias search="sudo apt-cache search"
|
||||
alias autoremove="sudo apt-get autoremove"
|
||||
|
||||
alias mountinfo="mount | column -t"
|
||||
alias meminfo="free -mlt"
|
||||
alias driveinfo="df -H"
|
||||
|
||||
alias rumacly="cd ~/Dropbox/Git/rumacly"
|
||||
|
||||
|
||||
# Launchers
|
||||
|
||||
alias minecraft='padsp java -Xmx2048M -Xms1024M -cp ~/Minecraft/minecraft.jar net.minecraft.LauncherFrame'
|
||||
alias s="sublime"
|
||||
alias m="clear; cmatrix -bs"
|
||||
|
||||
alias aliases="sublime ~/.bash_aliases"
|
||||
|
||||
|
||||
# Functions
|
||||
|
||||
cdl() {
|
||||
cd "$@";
|
||||
ls -a;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user