This release is a pre-release and may not be stable for production use.
Application Launcher
An OVOS skill that launches and closes applications on the Linux desktop by voice.
NOTE: This skill works only on Linux desktop environments.
Install
pip install ovos-skill-application-launcher
About
The skill scans the standard directories for .desktop files. It reads application names and execution commands from these files.
Scanned folders:
- /usr/share/applications/
- /usr/local/share/applications/
- ~/.local/share/applications/
Examples
- "Open Volume Control"
- "Launch Firefox"
- "Close Firefox"
Multiple instances of the same application
On Wayland systems, window control is not available. The skill closes apps only by ending running processes.
On X systems, the launcher closes windows before ending processes, if wmctrl is on your system.
This gives more granular control. You can manage multiple instances of an application, such as several Firefox windows, individually, even if they share the same PID.
If several processes with different PIDs match an application, the skill closes only the most recent one by default. You can turn on the old behavior, which ends all matching processes instead.
Configuration via settings.json
To customize the behavior of the Application Launcher skill, you can modify the following options in the settings.json file:
| Option | Type | Default Value | Description |
|---|---|---|---|
aliases |
Dict[str, List[str]] |
{"kcalc": ["calculator"]} |
Defines application aliases. Use application names from the .desktop file as keys and a list of speech-friendly names as values. |
user_commands |
Dict[str, str] |
{} |
User-defined application commands. Map application names to their corresponding bash commands. |
thresh |
float |
0.85 |
The threshold for string matching. Lower values will allow more lenient matches for application names. |
skip_categories |
List[str] |
["Settings", "ConsoleOnly", "Building"] |
Categories in desktop files that exclude application from being considered. |
skip_keywords |
List[str] |
[] |
Keywords in desktop files that exclude application from being considered. |
target_categories |
List[str] |
[] |
Categories in desktop files required for application to be considered. |
target_keywords |
List[str] |
[] |
Keywords in desktop files required for application to be considered. |
blacklist |
List[str] |
[] |
List of applications to ignore during scanning (application names from the .desktop file). |
require_icon |
bool |
True |
If set to True, only include applications that have an icon defined in their .desktop file. |
require_categories |
bool |
True |
If set to True, only include applications that have at least one category defined in their .desktop file. |
terminate_all |
bool |
False |
If True, will terminate all matching processes when closing applications. |
shell |
bool |
False |
If True, allows commands to be executed in a shell environment. |
disable_window_manager |
bool |
False |
If True, ignores wmctl and exclusively uses running processes for managing apps |
eg.
{
"aliases": {
"kcalc": ["calculator"]
},
"thresh": 0.85,
"skip_categories": ["Settings", "ConsoleOnly", "Building"],
"terminate_all": true
}
Category
Productivity
Tags
#desktop #desktop-launch #desktop-launcher
License
Apache-2.0
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file ovos_skill_application_launcher-0.6.3a1.tar.gz.
File metadata
- Download URL: ovos_skill_application_launcher-0.6.3a1.tar.gz
- Upload date:
- Size: 24.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
56b44f4acb6ee4029fc6bcf27b03c4ee32893946a94145a4b0cfed4c13a9fb40
|
|
| MD5 |
66d89001470509a8f26cf840288dc76d
|
|
| BLAKE2b-256 |
fe5e9c7947946b17d00a883a868880a5ee8232a568e12daacc706bcf44009cf2
|
File details
Details for the file ovos_skill_application_launcher-0.6.3a1-py3-none-any.whl.
File metadata
- Download URL: ovos_skill_application_launcher-0.6.3a1-py3-none-any.whl
- Upload date:
- Size: 34.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
af60ff8d82eb68577d5b719112b187f567740d9eed1f084cba6c092b874bf625
|
|
| MD5 |
4b28eeef32ff2e5f9a43abb997acdfdf
|
|
| BLAKE2b-256 |
4ba4fe835be8c221ce007a6d719c5670f9600a10511719af4ce12e14b49aff4d
|