We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
A flag (-a and --auto-reload) to make dxhd watch the config file passed for changes, and auto-reload that config on change.
-a
--auto-reload
To avoid reloading all the dxhd instances/to get changes applied instantly.
Use fsnotify for it.
The text was updated successfully, but these errors were encountered:
Currently looking at using the inotify API that is already provided through syscall so it doesn't create another dependency.
Sorry, something went wrong.
Probably reserve -a flag for the future, and use -w --watch for this. Addition to implementation hints: -w should be ignored if -i is passed.
-w
--watch
-i
After #39 this can be done easily.
NotUnlikeTheWaves
No branches or pull requests
What do you want
A flag (
-a
and--auto-reload
) to make dxhd watch the config file passed for changes, and auto-reload that config on change.Why
To avoid reloading all the dxhd instances/to get changes applied instantly.
Implementation hints
Use fsnotify for it.
The text was updated successfully, but these errors were encountered: