1
0
mirror of https://codeberg.org/vyivel/dulcepan/ synced 2025-12-22 17:56:49 +02:00

Remember last selection

This commit is contained in:
Kirill Primak
2024-06-24 16:48:51 +03:00
parent 9fb42b9869
commit 5babf54a32
4 changed files with 105 additions and 0 deletions

View File

@@ -160,6 +160,8 @@ struct dp_state {
struct sfdo_basedir_ctx *basedir_ctx;
char *persistent_path;
struct wl_list outputs;
struct wl_list seats;
@@ -208,4 +210,7 @@ char *dp_strdup(const char *str);
const char *dp_ext_from_path(const char *path);
enum dp_file_format dp_ext_to_format(const char *ext);
void dp_persistent_load(struct dp_state *state);
void dp_persistent_save(struct dp_state *state);
#endif