Grab bag of random fish scripts and functions I've collected
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 4 lines 310 B view raw
1function ,rmount --wraps='rclone mount' --description 'mounts the given rclone remote (plus path) at the given name in the ~/Remotes/ folder' 2 mkdir -p "$HOME/Remote/$argv[2]" 3 rclone mount --daemon --vfs-cache-mode=full --vfs-fast-fingerprint --volname "$argv[2]" "$argv[1]" "$HOME/Remote/$argv[2]" 4end