Last active
February 27, 2019 11:12
-
-
Save androidfanatic/d172f29c1b9d45777a91949f40148ba6 to your computer and use it in GitHub Desktop.
Alias for myself
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# volume up or down | |
alias vol+="amixer -D pulse sset Master 5%+" | |
alias vol++="amixer -D pulse sset Master 10%+" | |
alias vol+++="amixer -D pulse sset Master 15%+" | |
alias vol-="amixer -D pulse sset Master 5%-" | |
alias vol--="amixer -D pulse sset Master 10%-" | |
alias vol---="amixer -D pulse sset Master 15%-" | |
alias srcedit='nano +99999 ~/.bashrc && source ~/.bashrc' | |
alias srcupdate='source ~/.bashrc' | |
alias npms='npm run serve' | |
alias npmi='npm install --verbose' | |
alias yrs='yarn run serve' | |
alias yrl='yarn run lint' | |
alias yrb='yarn run build' | |
alias yri='yarn install' | |
alias gs='git status' | |
alias gpull='git pull' | |
alias gpush='git push -u origin' | |
alias gd='git diff' | |
alias gb='git branch' | |
alias gc='git checkout' | |
alias ga='git add' | |
alias gcommit='git commit -m' | |
alias gstash='git stash' | |
PS1='\e[7m\u@\w:\e[27m ' | |
alias gohome='~/shutdown.sh' | |
alias flushdns='sudo systemd-resolve --flush-caches' | |
alias memo='nano +999999999 ~/.memo/.memo' | |
alias ls='ls -alh' | |
alias portsnif='lsof -i' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment