Created
January 4, 2017 15:10
-
-
Save seniorpreacher/ea4cce21d6513054e2601d4fdde0400c to your computer and use it in GitHub Desktop.
This file contains 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
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