You can add and remove rules in the Application Rules section of the application.
# Add a rule to disable sound effects for an application
$ kbs add-rule -r disable -a "C:\Program Files\MyApp\MyApp.exe"
# Remove a rule for an application
$ kbs remove-rule -a "C:\Program Files\MyApp\MyApp.exe"
enable
- Enable sound effects for the application.disable
- Disable sound effects for the application.exclusive
- Only play sound effects for the application.
The global rule can only be set to
enable
ordisable
. By default, the global rule is set toenable
.
# List the currently loaded rules
$ kbs list-rules
The global rule is used as the fallback for any application that does not have a specific rule set. By default, it is set to
enable
.
# Set the global rule to disable
$ kbs set-global-rule -r disable
# Retrieve the current global rule
$ kbs get-global-rule