1
0
Fork 0
This commit is contained in:
Arthur K. 2026-01-06 07:36:53 +03:00
parent c449dfcb5f
commit 559939e2f4
Signed by: wzray
GPG key ID: B97F30FDC4636357
49 changed files with 729 additions and 252 deletions

View file

@ -0,0 +1,13 @@
# shellcheck disable=SC2164,SC2168
local DIRNAME="$HOME/Services/cpu"
cd::enter() {
! mount | grep -q "$DIRNAME" && mount "$DIRNAME" && builtin cd -q "$DIRNAME"
}
cd::leave() {
! fuser -m "$DIRNAME" >/dev/null 2>&1 && umount "$DIRNAME"
}
# vim: ft=sh