Skip to content

Instantly share code, notes, and snippets.

@seniorpreacher
Created January 4, 2017 15:10
Show Gist options
  • Save seniorpreacher/ea4cce21d6513054e2601d4fdde0400c to your computer and use it in GitHub Desktop.
Save seniorpreacher/ea4cce21d6513054e2601d4fdde0400c to your computer and use it in GitHub Desktop.
alias ls="ls -hal "
# Fix wifi problem on Ubuntu
alias fixwifi="sudo service network-manager restart && sudo ifconfig wlo1 up"
alias wifix="fixwifi"
# Set screen rotation to normal
alias fixscreen="xrandr -o normal"
# Stop all docker containers that are running
alias stop_all_docker=eval "docker stop `docker ps -q | sed ':a;N;$!ba;s/\n/ /g'`"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment