dotfiles/private_dot_config/zsh/func
array-in-a-matrix 085f04ae72 update
2023-09-20 11:33:31 -04:00

15 lines
280 B
Bash

#!/bin/zsh
newtheme(){
sh $XDG_CONFIG_HOME/sway/colors.sh $1
}
lfcd() {
tmp="$(mktemp)"
lfrun -last-dir-path="$tmp" "$@"
if [ -f "$tmp" ]; then
dir="$(cat "$tmp")"
rm -f "$tmp"
[ -d "$dir" ] && [ "$dir" != "$(pwd)" ] && cd "$dir"
fi
}