diff options
author | NunoSempere <nuno.semperelh@protonmail.com> | 2024-03-14 19:31:04 -0300 |
---|---|---|
committer | NunoSempere <nuno.semperelh@protonmail.com> | 2024-03-14 19:31:04 -0300 |
commit | af208844b575edb6ce9205507289a00743a8bf4e (patch) | |
tree | c36ebd9e175a4d60a1b31d0f94f085a9d1f90aae /plugins/stand_in | |
parent | 878d6a890bdc1a8381b0c44c80c36d829cc28fc1 (diff) |
reorg makefile and make runtime locations less messy
In particular, stop using the installation directory for anything
and instead move to /opt/rosenrot
The user specific cache remains at /home/user/.cache
Diffstat (limited to 'plugins/stand_in')
-rw-r--r-- | plugins/stand_in/stand_in.c | 3 | ||||
-rw-r--r-- | plugins/stand_in/stand_in.h | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/plugins/stand_in/stand_in.c b/plugins/stand_in/stand_in.c index dbcc7e8..cb8c487 100644 --- a/plugins/stand_in/stand_in.c +++ b/plugins/stand_in/stand_in.c @@ -25,3 +25,6 @@ void read_style_js(char* string){ } +int shortcut_expand(const char* uri, char* output){ + return 0; +} diff --git a/plugins/stand_in/stand_in.h b/plugins/stand_in/stand_in.h index 062acf7..10f4283 100644 --- a/plugins/stand_in/stand_in.h +++ b/plugins/stand_in/stand_in.h @@ -21,3 +21,4 @@ void read_readability_js(char* string); void read_style_js(char* string); +int shortcut_expand(const char* uri, char* output); |