New comment by tranzystorek-io on void-packages repository https://github.com/void-linux/void-packages/pull/37067#issuecomment-1124609136 Comment: I did a quick prototype, but I'm not sure how to emulate systemd's `RuntimeDirectory` parameter, to create the `/run/vmblock-fuse` dir EDIT: managed to get it to work, the following service enables copy-paste between host and guest (X11 guest only): ```sh #!/bin/sh set -e [ ! -d /run/vmblock-fuse ] && mkdir -p /run/vmblock-fuse exec /usr/bin/vmware-vmblock-fuse -d -f -o subtype=vmware-vmblock,default_permissions,allow_other /run/vmblock-fuse ```