3.4 KiB
title | layout |
---|---|
Packages | docs |
Packages makes it easy to reuse Matches created by other people or share yours with the world. Thanks to espanso hub, the official espanso package repository, and the built-in package manager, using them is a breeze.
Install a Package
Packages can be installed in various ways, but the easiest choice is espanso hub.
From espanso hub
Navigate to espanso hub and choose the package you want to install.
Let's say you want to install the Basic Emojis package, open a terminal and type:
espanso install basic-emojis
Then don't forget to restart espanso using:
espanso restart
From a Repository
Currently packages can only be installed from the espanso hub, but direct installation from a repository is coming soon. Follow the status on this Issue.
Listing Installed Packages
To list installed packages, open a terminal and type:
espanso package list
Removing a Package
To remove a package, open a terminal and type:
espanso uninstall <package-name>
Where <package-name>
is the name of the package. You can obtain that name listing installed packages.
Then don't forget to restart espanso using:
espanso restart
Creating a Package
Note: espanso is in the alpha stage right now and sometimes things are not very polished. The current package creation process will be improved in the future.
In their basic form, Packages are just configuration files, very similar to those you've seen before, with a few metadata to describe them.
Packages are hosted on GitHub repositories. To create one, go ahead and fork the espanso package example repo.
From that example you can create your own package in a few easy steps:
-
Change the
simple-package
directory name to your desired package name (only alphanumeric characters and '-' are allowed) -
Change the metadata in the header of the
simple-package/README.md
file, where:package_name
is the name of the package ( must be the same as the directory )package_title
human friendly version of the package name.package_desc
a short description of the packagepackage_version
the version of the package, you should not change this one when you start.package_author
your namepackage_repo
the repo address of this package, should match the final github address
-
Then after the
---
you can write the package description using the Markdown syntax. -
Modify the
package.yml
file contained in the0.1.0
folder (matching the package version) by changing the name and including your Matches. For example:# Simple package name: simple-package parent: default matches: - trigger: ":hw" replace: "hello world"
Publishing on espanso hub
After following all these steps, you can request to publish your package to espanso hub by opening an Issue with the following information:
- The package repository url