Axios Well I know the previous was meant to be my last post on this subject BUT....
If you are using Fedora workstation then ZRAM is enabled by default, the same as Solus. However SWAPPINESS in Solus is set to 100 as spoken about here, whereas in Fedora it is set to 60. I changed the value in Fedora to 100 which seems to have improved the feel and stability of this fairly low end tablet.
Try it out (resets after a reboot) sudo sysctl vm.swappiness=100
Or
Make a permanent change sudo nano /etc/sysctl.conf
Then add the following at the bottom
# Disable swap read-ahead
vm.page-cluster = 0
# Be more proactive in swapping pages to zram
vm.swappiness = 100
I hope this makes the same positive improvement for you as it did for me.
EDIT: Improved the code.