From fc3c5393bf72e5742a2a73ea9122195911b568e0 Mon Sep 17 00:00:00 2001 From: self Date: Thu, 5 Jan 2023 20:35:21 +0000 Subject: Removed functions which are now part of orgd. --- zsh/.zshrc-fn | 27 --------------------------- 1 file changed, 27 deletions(-) (limited to 'zsh/.zshrc-fn') diff --git a/zsh/.zshrc-fn b/zsh/.zshrc-fn index 0d7e707..769f29b 100644 --- a/zsh/.zshrc-fn +++ b/zsh/.zshrc-fn @@ -1,31 +1,4 @@ -# Takes a prefix, and removes that prefix from all files that have that prefix. -deprefix() { - for i in "$1"*;do mv "$i" "${i#"$1"}";done -} - -# Similar to [deprefix] but for suffixes. -desuffix() { - rename --no-overwrite -- "$1" "" * -} - -rd() { # Rename current directory. - [ "$1" = "" ] && echo "rd: rename directory: new name missing" && return - curr="$(basename "$(pwd)")" - cd .. - mv "$curr" "$1" - cd "$1" || return -} - # pulseaudio - this is a temporary solution sv() { pactl set-sink-volume 0 $1% } - -pvd() { - mpv *$1* -} - -# Change a string into its kebab style, e.g. all-lower-case-with-dashes. -intokebab() { - echo "$1" | tr ' ' '-' | tr '[:upper:]' '[:lower:]' | sed 's/[^a-zA-Z-]//g' -} -- cgit v1.2.1