dotfiles

*nix config files
git clone git://git.pyratebeard.net/dotfiles.git
Log | Files | Refs | README

commit 7b11783203f3e8c011ca33cb56cfbad09b0eb195
parent 840a934cd596dbe8974f59d43ad9f44e1397dfb0
Author: pyratebeard <root@pyratebeard.net>
Date:   Thu, 16 Mar 2017 17:03:17 +0000

New alias and grammar corrections

Alias 'vh' added for sending output to virtualhacker termbin. Grammar corrections
Diffstat:
Mzsh/.zsh/aliases.zsh | 28+++++++++-------------------
1 file changed, 9 insertions(+), 19 deletions(-)

diff --git a/zsh/.zsh/aliases.zsh b/zsh/.zsh/aliases.zsh @@ -1,20 +1,9 @@ -# ██ -# ░██ -# ██████ ██████░██ -# ░░░░██ ██░░░░ ░██████ -# ██ ░░█████ ░██░░░██ -# ██ ░░░░░██░██ ░██ -# ██████ ██████ ░██ ░██ -# ░░░░░░ ░░░░░░ ░░ ░░ +# Alias list for zsh # -# ▓▓▓▓▓▓▓▓▓▓ -# ░▓ author ▓ xero <x@xero.nu> -# ░▓ code ▓ http://code.xero.nu/dotfiles -# ░▓ mirror ▓ http://git.io/.files -# ░▓▓▓▓▓▓▓▓▓▓ -# ░░░░░░░░░░ +# ABOUT Custom aliases for zsh +# AUTHOR pyratebeard <root@pyratebeard.net> +# CODE https://github.com/pyratebeard/dotfiles # -#█▓▒░ aliases alias ll="ls -lahF --color=auto" alias ls="ls -hF --color=auto" alias lsl="ls -lhF --color=auto" @@ -73,28 +62,29 @@ alias nexus="jmtpfs ~/nexus" alias gifview="gifview -a" alias reboot="sudo reboot" alias connect="sudo wpa_supplicant -B -i wlp2s0 -c" +alias vh="nc vhbin.net 9999" tmx() { [[ $# -eq 0 ]] && bash ~/bin/tmx 0 || bash ~/bin/tmx $# } email() { echo $3 | mutt -s $2 $1 } -# colorized cat +# Colorised cat c() { for file in "$@" do pygmentize -O style=sourcerer -f console256 -g "$file" done } -# colorized less +# Colorised less l() { pygmentize -O style=sourcerer -f console256 -g $1 | less -r } -# read markdown files like manpages +# Read markdown files like manpages md() { pandoc -s -f markdown -t man "$*" | man -l - } -# nullpointer url shortener +# nullpointer URL shortener short() { curl -F"shorten=$*" https://0x0.st }