summaryrefslogtreecommitdiff
path: root/zsh/.zshrc-fn
blob: 0d7e707165ca7c221eef316dd4432c5fa48a6b89 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# 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'
}