[Request] Add live refresh for following apps
These apps don't auto reload, and need these commands to read new colors
App: command
bat: bat cache --build
swaync: swayns-client -rs
It would be nice to add rofi and swayosd too
I suggest adding an option to the TOML config file under the template section, such as exec, or perhaps splitting it into pre_exec and post_exec. This option would allow users to specify a shell command to be executed automatically.
- The
execoption would run the specified command after the template generation is complete. - Alternatively, the
pre_execoption could run the command before generation, and thepost_execoption could run it after generation.
I believe this approach would be more effective than implementing commands for each requested app individually. It would give users the flexibility to restart or perform any necessary actions before or after generating templates according to their needs.
I recall something similar might have been added before, possibly called hook, but it’s not mentioned in the documentation, so I’m unsure if it’s the same feature or something different.
I am talking about https://github.com/InioX/matugen/issues/83#issuecomment-2197180474
Anyway, Here’s an example using the exec approach:
[templates.swaync]
input_path = '~/.config/swaync/style-template.css'
output_path = '~/.config/swaync/style.css'
exec = 'swaync-client --reload-config && swaync-client --reload-css'
And here’s an example using the {pre/post}_exec approach:
[templates.some_app]
input_path = '~/.config/some_app/template.ext'
output_path = '~/.config/some_app/generated.ext'
pre_exec = 'echo "before generating" >> ~/logs'
post_exec = 'echo "after generating" >> ~/logs'
I've also been thinking of automatically reloading when the template has a specific name like sway or something else. Every template would have an option to enable/disable the auto reload.
I've also been thinking of automatically reloading when the template has a specific name like
swayor something else. Every template would have an option to enable/disable the auto reload.
This would be a great feature. However, my suggestion to implement after/before generation hooks is to allow users to write custom scripts tailored to their own environments. From my perspective, adding specific code for auto-reloading based on template names like sway could lead to more complex code, additional requests to support other tools, and potential future bugs and code maintenance issues.
I already added the pre_hook and post_hook stuff in #100.
honestly I don't think this is a good idea. We should just make a directory of example hooks so that users can simply copy/paste.
honestly I don't think this is a good idea. We should just make a directory of example hooks so that users can simply copy/paste.
I didn't get your idea. Could you make it clear?
Like, What do you mean by saying hooks and example hooks?
Take a look at #100