12345678910111213141516171819202122232425262728293031323334353637 |
- # -*-sh-*-
- # .bash_aliases - My command line shortcuts
- #
- # Written in 2017 by Caleb Herbert <csh@bluehome.net>
- #
- # To the extent possible under law, the author(s) have dedicated all
- # copyright and related and neighboring rights to this software to the
- # public domain worldwide. This software is distributed without any
- # warranty.
- #
- # You should have received a copy of the CC0 Public Domain Dedication
- # along with this software. If not, see
- # <http://creativecommons.org/publicdomain/zero/1.0/>.
- # Sprunge - a pipeable pastebin
- alias sprunge='curl -F "sprunge=<-" http://sprunge.us'
- # List networks
- alias networks='iw dev wlp2s0 scan | grep "SSID:" | sed "s/SSID://g"'
- # Use protection! :P
- alias condom='torsocks'
- # Fuck vi
- alias vi='emacs -nw'
- alias vim='emacsclient -c'
- # So I don't have to type the whole command during a phone call
- alias X='ssh csh@bluehome.net rm -f ~/public_html/files/attachments.zip'
- # Watch Jupiter Broadcasting live stream
- alias jblive='mpv rtmp://jblive.videocdn.scaleengine.net/jb-live/play/jblive.stream'
- # Party like it's 1992
- alias WINDOWS="startx"
- alias windows="startx"
|