The values are stored in ~/.config/dconf/user
but this is a binary and not human readable so I don't know how you would edit it.
You can view it with
xxd ~/.config/dconf/user
Source0
Source1
As requested here is a .desktop file that will run gsettings set org.gnome.desktop.background show-desktop-icons true
on boot
Open a new document in a text editor and paste this in
[Desktop Entry]
Type=Application
Exec= gsettings set org.gnome.desktop.background show-desktop-icons true
X-Gnome-Auto-Start=True
Name[en_GB]=icons.desktop
Save it as icons.desktop
and make it executable by right click or
chmod +x path/to/icons.desktop
Now double click icons.desktop
to confirm it works.
Once you are happy it works move it to ~/.config/autostart
, if it does not exist, make it
mkdir ~/.config/autostart
Now when you reboot, this will run and activate the icons, if they are already active, it will just do nothing.
#/bin/bash gsettings set org.gnome.desktop.background show-desktop-icons true
and run at start up. IDK what to tell you about the ISO, I don't have enough information. – Mark Kirby Jan 09 '17 at 12:00"gsettings set org.gnome.desktop.background show-desktop-icons true"
we can execute it in .desktop as mentioned in this link
http://stackoverflow.com/questions/8247706/start-script-when-gnome-starts-up
Can we write "Exec= gsettings set org.gnome.desktop.background show-desktop-icons true" ??
– techy Jan 09 '17 at 12:43gsettings
is thecli
frontend todconf
, which is the low-level editor to thedconf
database. As Mark mentioned, the settings are stored in thedconf
database, which is in binary format. – Jacob Vlijm Jan 09 '17 at 13:19