Missing xorg.conf.d file after SDDM issue

I was facing the Failed to open SDDM issue, which led me to delete the xorg.conf.d file present in /etc/X11/.
I want to download or get that file back again as I can’t use my trackpad on Manjaro Linux now,that file had my trackpad configurations.

First rule I usually follow.
Never delete any folder (xorg.conf.d is a folder) you can best rename it to try out.

Now that you have deleted
Follow this wiki

You should get back by reinstall of Xorg. The wiki link will help you reconfigure your system

From what I can tell the only thing that should be there by default is the touchpad file.

curl -O https://gitlab.manjaro.org/profiles-and-settings/iso-profiles/-/raw/master/manjaro/kde/desktop-overlay/etc/X11/xorg.conf.d/30-touchpad.conf
sudo mkdir -p /etc/X11/modprobe.d
sudo mv 30-touchpad.conf /etc/X11/modprobe.d/

we can also maybe reinstall xorg-server (which should own that directory) and overwrite

sudo pacman -Syyu xorg-server --overwrite /etc/X11/modprobe.d

(reboot)