1
0
Fork 0
dotfiles/.config/zsh/cd_hooks/higpu_mount
2026-01-06 07:36:53 +03:00

14 lines
283 B
Bash

# shellcheck disable=SC2168
local DIRNAME="$HOME/Services/gpu"
local MOUNT_DIRNAME="$DIRNAME/.volumes"
cd::enter() {
! mount | grep -q "$MOUNT_DIRNAME" && mount "$MOUNT_DIRNAME"
}
cd::leave() {
! fuser "$DIRNAME" >/dev/null 2>&1 && umount "$MOUNT_DIRNAME"
}
# vim: ft=sh