mirror of
https://github.com/notwa/rc
synced 2024-11-05 06:39:02 -08:00
100 lines
3.1 KiB
Bash
100 lines
3.1 KiB
Bash
# for both zsh and bash
|
|
|
|
umask 027 # screw others
|
|
|
|
ADDPATH() {
|
|
grep ":$1:" <<<":$PATH:" >/dev/null || export PATH="$PATH:$1"
|
|
}
|
|
|
|
ADDPATH "$HOME/opt/local/bin"
|
|
|
|
ify() {
|
|
[ $# -ge 2 ] || return
|
|
local ex=$1
|
|
shift
|
|
$@ | $ex
|
|
}
|
|
|
|
has() { which "$1" >/dev/null 2>&1 && which "$1"; }
|
|
|
|
# cleanup in case of inherited exports
|
|
for x in AR CC CPP CXX CFLAGS CPPFLAGS CXXFLAGS LDFLAGS RANLIB RC WINDRES; do
|
|
unset $x
|
|
done
|
|
|
|
# PuTTY over serial
|
|
[[ "$TERM" == vt102 ]] && export TERM="xterm"
|
|
|
|
export PREFIX="$HOME/opt/local"
|
|
export CC="$(has clang || has gcc)"
|
|
export CXX="$(has clang || has g++)"
|
|
export CFLAGS='-march=native -O2'
|
|
export LDFLAGS='-Wl,-O1,--sort-common,-z,relro'
|
|
export CFLAGS="$CFLAGS -I'$HOME/opt/local/include'"
|
|
export LDFLAGS="$LDFLAGS -L'$HOME/opt/local/lib'"
|
|
export CXXFLAGS="$CFLAGS"
|
|
export LD_LIBRARY_PATH= # -n isn't an option in zsh's export
|
|
export MAKEFLAGS="-j2"
|
|
|
|
export EDITOR='vim -p'
|
|
export GOPATH="$HOME/go"
|
|
|
|
# colors
|
|
for x in ls dir vdir grep fgrep egrep; do
|
|
alias $x="$x --color=auto"
|
|
done
|
|
#alias make="$(has colormake || has make)"
|
|
|
|
# just flags
|
|
export LESS='-SR'
|
|
alias makedbg='CFLAGS="-O0" LDFLAGS="-g" make'
|
|
alias fils="du -bad1"
|
|
alias lsfm="lsf -ugpms"
|
|
alias lsa="ls -A --group-directories-first"
|
|
alias logs="logs -o cat -b -e"
|
|
alias logsf="logs -f"
|
|
alias diff="git diff --color=auto --no-ext-diff --no-index"
|
|
alias db="dropbox_uploader"
|
|
|
|
# being specific
|
|
alias erc="e ~/.zshrc ~/shrc.zsh ~/.bashrc ~/.vimrc"
|
|
alias irc="screen -dR irc irssi"
|
|
alias crawl='screen -dR crawl ssh crawl@crawl.develz.org -i ~/.ssh/crawl'
|
|
alias crawla='screen -dR crawl ssh crawl@crawl.akrasiac.org -l joshua -i ~/.ssh/crawl'
|
|
|
|
# providing extra functionality
|
|
# TODO: dotfiles first, like `LC_ALL=C ls -A` which doesnt work with -X flag
|
|
alias ll="ify less ls -ACX --group-directories-first --color=force"
|
|
alias counts='find . | wc -l'
|
|
alias exts='print -l *(:e:l) | sort | uniq -c | sort -n'
|
|
alias meow='( cd ~/play/meow; ~/sh/meow.sh/run -pa )'
|
|
alias nocom='grep -oP --line-buffered --color=never "^[^#]+"'
|
|
alias unwrap='awk '\''BEGIN{RS="\n\n";FS="\n"}{for(i=1;i<=NF;i++)printf "%s ",$i;print "\n"}'\'
|
|
alias picky='{ pacman -Qgq base base-devel | tee -; pacman -Qtnq; } | sort | uniq -u'
|
|
alias unused='{ pacman -Qt; pacman -Qe | tee -; } | sort | uniq -u'
|
|
|
|
. ~/sh/lsf.sh/lsf.sh
|
|
. ~/sh/z/z.sh
|
|
|
|
#export MPV_HOME=/c/path/mpv
|
|
mf="--no-sub" # waste of time, twitch/hitbox doesn't have subs
|
|
mf+=" --cache 4096" # default of 320 is way too small in practice
|
|
mf+=" --cache-pause=1" # avoid pausing as much as possible
|
|
mf+=" --cache-min=20" # should be higher but who has time for that
|
|
mf+=" --framedrop=yes" # necessary for video to catch up to audio
|
|
mf+=" --mc=60" # very aggressive video sync
|
|
mf+=" --no-initial-audio-sync" # not sure if helps tbh
|
|
mf+=" --autosync=0" # testing
|
|
export MPV_STREAM_FLAGS="$mv"
|
|
unset mv
|
|
|
|
twitch(){
|
|
livestreamer "twitch.tv/$1" best -p mpv -a \
|
|
"$MPV_STREAM_FLAGS ${2:+--autofit=}${2:-} {filename}"
|
|
}
|
|
|
|
# hitbox uses rtmp but mpv doesnt support rtmp dump parameters
|
|
hitbox(){
|
|
livestreamer "hitbox.tv/$1" best -p mpv -a \
|
|
"$MPV_STREAM_FLAGS ${2:+--autofit=}${2:-} {filename}"
|
|
}
|