A line in my ~/.config/gtk-3.0/gtk.css has my home directory hardcoded in it:
@import url('/home/myusername/.local/share/.../maximized.css');
I would like to share this dotfile across different users, which is why the home path would need to be variable. Something like this:
@import url('$HOME/.local/share/.../maximized.css');
Is this possible?
Many thanks.