Skip to the content.

Keyboard Sounds: Application Rules

Application Rules

⚠️ Application Rules are only available on Windows

Index

Add and Remove Rules

In Application

You can add and remove rules in the Application Rules section of the application.

Add and Remove Rules

From the Command Line

# 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"

Rule Types

Rule Types

The global rule can only be set to enable or disable. By default, the global rule is set to enable.

List Rules

# List the currently loaded rules
$ kbs list-rules

Set the global rule

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