summaryrefslogtreecommitdiff
path: root/zsh/.zshrc-fn
blob: f58df75dcb35493060a811a0b613d797e8fce25f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
defix() {
	for i in "$1"*;do mv "$i" "${i#"$1"}";done
}

rd() { # Rename current directory.
	curr="$(dirname "$(pwd)")"
	cd ..
	mv "$curr" "$1"
	cd "$curr" || return
}

# pulseaudio - this is a temporary solution
sv() {
    pactl set-sink-volume 0 $1%
}

pvd() {
    mpv *$1*
}