Editing certain "Windows" shortcuts revert after system restart
"View split on left" and "View split on right" keyboard shortcuts are disabled(revert to default) on next restart after editing them, tried using dconf-editor but those keybinding are probably immutable. Is there some way to change those keybindings and make them persist on next system reboot?

Solution:Jump to solution
creating a .service file that edits the keybinding on startup fixed this
1.
mkdir -p ~/.config/systemd/user/
-- create necessary directory for systemd user services
2. nano ~/.config/systemd/user/gnome -- custom-shortcuts.service
- touch and edit .service file with nano...2 Replies
Solution
creating a .service file that edits the keybinding on startup fixed this
1.
mkdir -p ~/.config/systemd/user/
-- create necessary directory for systemd user services
2. nano ~/.config/systemd/user/gnome -- custom-shortcuts.service
- touch and edit .service file with nano
3. [Unit]
Description=Apply custom GNOME keyboard shortcuts for window tiling
PartOf=graphical-session.target
After=graphical-session.target gnome-session-initialized.target
[Service]
Type=oneshot
ExecStartPre=/usr/bin/sleep 2
ExecStart=/usr/bin/gsettings set org.gnome.mutter.keybindings toggle-tiled-left "['<Super>Left']"
ExecStart=/usr/bin/gsettings set org.gnome.mutter.keybindings toggle-tiled-right "['<Super>Right']"
[Install]
WantedBy=graphical-session.target
-- add this to .service file
4. systemctl --user daemon-reload
;;
systemctl --user enable gnome-custom-shortcuts.service
-- reload systemd manager configuartion and start service
5. systemctl --user status gnome-custom-shortcuts.service
-- check service status (optional)for anyone coming across this issue, there's a pre-installed extension called "Tiling shell" that blocks editing said keybindings, disabling the extension also works...