What do you like? For example, I chose dinit because of its similar command syntax, which makes it easier to remember. Take a look for yourself:
SystemD:
systemctl start SERVICE_NAME
systemctl stop SERVICE_NAME
systemctl restart SERVICE_NAME
systemctl enable SERVICE_NAME
systemctl disable SERVICE_NAME
Dinit:
dinitctl start SERVICE_NAME
dinitctl stop SERVICE_NAME
dinitctl restart SERVICE_NAME
dinitctl enable SERVICE_NAME
dinitctl disable SERVICE_NAME
You also need to remember such a thing as installing an init package for a service, for example, in arch you would do it like this:
pacman -S colord
systemctl --now enable colord
Then in Artix you will do it like this:
pacman -S colord colord-dinit
dinitctl enable colord