When using the color picker widget GTK applications I often use a different color Palette to the one given by default, as shown in the picture below. While the program is running I can change the defaults colors and they stay changed, however, when I close the program those modifications disappear.
I wonder how I can make those modifications to persistent in disk.
From the tags you chose, the application name seems to be Dia. In the application, nothing lets you set this option. So the short answer is: no.
The issue is that Dia uses the now deprecated
GtkColorSelectionDialog
(in favor ofGtkColorChooserDialog
). In the deprecated version, there is a flag to tell the widget to show/hide the color palette, but that's pretty much the only control you have (seegtk_color_selection_set_has_palette
).In the new widget version (which, by the way, looks totally different), you have direct access to a
gtk_color_chooser_add_palette
:You can see you have much more options as far as customizing the palette is concerned. You even have the ability to decide the colors. This means you could save your current selection in the palette. Then, at application quit, you could save all the palette's colors in some sort of settings, and load them back at application start.
As a final note, I looked at the Dia source code and found that they seem to be looking to make the move to the new widget. Here is an excerpt:
From the commented code, it seems they are trying to make the move...