Lot's of awesome changes and some added scripts

This commit is contained in:
Chris Cochrun 2020-10-02 06:04:41 -05:00
parent ed91c15381
commit d36ce8b8b9
23 changed files with 303 additions and 374 deletions

42
espanso/default.yml Normal file
View file

@ -0,0 +1,42 @@
# espanso configuration file
# This is the default configuration file, change it as you like it
# You can refer to the official documentation:
# https://espanso.org/docs/
# Matches are the substitution rules, when you type the "trigger" string
# it gets replaced by the "replace" string.
matches:
# Simple text replacement
- trigger: ":espanso"
replace: "Hi there!"
# Dates
- trigger: ":date"
replace: "{{mydate}}"
vars:
- name: mydate
type: date
params:
format: "%m/%d/%Y"
# Shell commands
- trigger: ":shell"
replace: "{{output}}"
vars:
- name: output
type: shell
params:
cmd: "echo Hello from your shell"
- trigger: "gml"
replace: "ccochrun21@gmail.com"
- trigger: "otl"
replace: "chris.cochrun@outlook.com"
- trigger: "tfcml"
replace: "chris@tfcconnection.org"
- trigger: ":name"
replace: "Chris Cochrun"