From bf51cf8f8bff54319198005981c952fe07d8cd77 Mon Sep 17 00:00:00 2001 From: surtur Date: Sun, 3 Apr 2022 22:31:19 +0200 Subject: [PATCH] zshrc: move functions to .zsh/functions.zsh --- .zsh/functions.zsh | 46 ++++++++++++++++++++++++++++++++++++++++++++++ .zshrc | 29 +---------------------------- 2 files changed, 47 insertions(+), 28 deletions(-) create mode 100644 .zsh/functions.zsh diff --git a/.zsh/functions.zsh b/.zsh/functions.zsh new file mode 100644 index 0000000..1dc0bf7 --- /dev/null +++ b/.zsh/functions.zsh @@ -0,0 +1,46 @@ +transfer() { if [ $# -eq 0 ]; then echo -e "No arguments specified. Usage:\necho transfer /tmp/test.md\ncat /tmp/test.md | transfer test.md"; return 1; fi;tmpfile=$( mktemp -t transferXXX ); if tty -s; then basefile=$(basename "$1" | sed -e 's/[^a-zA-Z0-9._-]/-/g'); curl --progress-bar --upload-file "$1" "https://transfer.sh/$basefile" >> $tmpfile; else curl --progress-bar --upload-file "-" "https://transfer.sh/$1" >> $tmpfile ; fi; cat $tmpfile; rm -f $tmpfile; } + + +info() { printf "\n%s %s\n\n" "$( date )" "$*" >&2; } + + +ix () { curl -n -F 'f:1=<-' http://ix.io 2>/dev/null ;} + + +viman() { text=$(man "$@") && echo "$text" | vim -R +":set ft=man nomod nonu noma nolist colorcolumn=" - ; } + + +upload() { + # inspired by https://www.alexander-pluhar.de/paste-file-host.html + # make eternity the default lifespan + FILE_LIFESPAN=${2:-e} + FILE_ID=$(base64 /dev/urandom | tr -d '/+' | dd bs=16 count=1 2>/dev/null) + + rsync -auvP -4 $1 nebula:/var/www/htdocs/dotya.ml/files/$FILE_LIFESPAN/$FILE_ID-$1 + + FILE_URL="https://dotya.ml/files/$FILE_LIFESPAN/$FILE_ID-$1" + + if [[ -z "$WAYLAND_DISPLAY" ]]; then + echo $FILE_URL | xclip -selection clipboard + echo $FILE_URL | xsel --clipboard --input + else + echo $FILE_URL | wl-copy + fi + + echo $FILE_URL +} + + +timesh() { + shell=${1-$SHELL} + for i in $(seq 1 10); do /usr/bin/time $shell -i -c exit; done +} + + +delete-branches() { + git branch | + grep --invert-match '\*' | + cut -c 3- | + fzf --multi --preview="git log {} --" | + xargs --no-run-if-empty git branch --delete --force +} diff --git a/.zshrc b/.zshrc index 62aae82..3ef916d 100644 --- a/.zshrc +++ b/.zshrc @@ -110,6 +110,7 @@ # User configuration source ~/.dotenv + source ~/.zsh/functions.zsh # You may need to manually set your language environment LANG=en_GB.UTF-8 @@ -142,34 +143,6 @@ fi - transfer() { if [ $# -eq 0 ]; then echo -e "No arguments specified. Usage:\necho transfer /tmp/test.md\ncat /tmp/test.md | transfer test.md"; return 1; fi;tmpfile=$( mktemp -t transferXXX ); if tty -s; then basefile=$(basename "$1" | sed -e 's/[^a-zA-Z0-9._-]/-/g'); curl --progress-bar --upload-file "$1" "https://transfer.sh/$basefile" >> $tmpfile; else curl --progress-bar --upload-file "-" "https://transfer.sh/$1" >> $tmpfile ; fi; cat $tmpfile; rm -f $tmpfile; } - info() { printf "\n%s %s\n\n" "$( date )" "$*" >&2; } - ix () { curl -n -F 'f:1=<-' http://ix.io 2>/dev/null ;} - viman() { text=$(man "$@") && echo "$text" | vim -R +":set ft=man nomod nonu noma nolist colorcolumn=" - ; } - upload() { - # inspired by https://www.alexander-pluhar.de/paste-file-host.html - # make eternity the default lifespan - FILE_LIFESPAN=${2:-e} - FILE_ID=$(base64 /dev/urandom | tr -d '/+' | dd bs=16 count=1 2>/dev/null) - - rsync -auvP -4 $1 nebula:/var/www/htdocs/dotya.ml/files/$FILE_LIFESPAN/$FILE_ID-$1 - - FILE_URL="https://dotya.ml/files/$FILE_LIFESPAN/$FILE_ID-$1" - - if [[ -z "$WAYLAND_DISPLAY" ]]; then - echo $FILE_URL | xclip -selection clipboard - echo $FILE_URL | xsel --clipboard --input - else - echo $FILE_URL | wl-copy - fi - - echo $FILE_URL - } - timesh() { - shell=${1-$SHELL} - for i in $(seq 1 10); do /usr/bin/time $shell -i -c exit; done - } - eval "$(starship init zsh)" if [ -e ~/.nix-profile/etc/profile.d/nix.sh ]; then . ~/.nix-profile/etc/profile.d/nix.sh; fi # added by Nix installer...and kept by me