dotfiles/.config/zsh/qol.zsh
afranco 816b24b84e
chore: A bunch of things.
Themery for nvim, tmux theme, zsh stuff
2025-06-04 11:48:36 +01:00

18 lines
289 B
Bash

# ~/.config/zsh/qol.zsh
backup() {
cp $1 $1.bak
}
restore() {
mv $1 $(echo $1 | sed 's/\.bak//')
}
capture() {
sudo dtrace -p "$1" -qn '
syscall::write*:entry
/pid == $target && arg0 == 1/ {
printf("%s", copyinstr(arg1, arg2));
}
'
}