Hello, for security reasons, I would very much appreciate an option to store clipboard contents to RAM instead of disk. Thanks
There is already an option for this. The content is only saved on disk if you activate the option save-on-quit. https://git.xfce.org/panel-plugins/xfce4-clipman-plugin/tree/panel-plugin/plugin.c#n134 https://git.xfce.org/panel-plugins/xfce4-clipman-plugin/tree/panel-plugin/plugin.c#n184 /* Return if the history must not be saved */ g_object_get (plugin->history, "save-on-quit", &save_on_quit, NULL); if (save_on_quit == FALSE) return;