aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/config.vala
diff options
context:
space:
mode:
Diffstat (limited to 'config.vala')
-rw-r--r--config.vala9
1 files changed, 9 insertions, 0 deletions
diff --git a/config.vala b/config.vala
index 0234aac..c0a084f 100644
--- a/config.vala
+++ b/config.vala
@@ -1,3 +1,8 @@
+struct OpenWithProgram {
+ string name;
+ string[] command;
+}
+
class Config {
public bool autohide_mouse;
@@ -18,6 +23,8 @@ class Config {
public Gdk.RGBA[] palette = new Gdk.RGBA[16];
+ public OpenWithProgram[] open_with_programs;
+
struct PaletteEntry {
string name;
string normal;
@@ -65,6 +72,8 @@ class Config {
palette[i + 8] = reader.read_colour("colours", "bright." + entry.name, entry.bright);
}
+ open_with_programs = reader.read_open_with({});
+
reader.log_unknown_keys();
}