···11+# espanso match file
22+33+# For a complete introduction, visit the official docs at: https://espanso.org/docs/
44+55+# You can use this file to define the base matches (aka snippets)
66+# that will be available in every application when using espanso.
77+88+# Matches are substitution rules: when you type the "trigger" string
99+# it gets replaced by the "replace" string.
1010+1111+# yaml-language-server: $schema=https://raw.githubusercontent.com/espanso/espanso/dev/schemas/match.schema.json
1212+1313+matches:
1414+ # Simple text replacement
1515+ #- trigger: ":espanso"
1616+ # replace: "Hi there!"
1717+1818+ # NOTE: espanso uses YAML to define matches, so pay attention to the indentation!
1919+2020+ # But matches can also be dynamic:
2121+2222+ # Print the current date
2323+ #- trigger: ":date"
2424+ # replace: "{{mydate}}"
2525+ # vars:
2626+ # - name: mydate
2727+ # type: date
2828+ # params:
2929+ # format: "%m/%d/%Y"
3030+3131+ # Print the output of a shell command
3232+ #- trigger: ":shell"
3333+ # replace: "{{output}}"
3434+ # vars:
3535+ # - name: output
3636+ # type: shell
3737+ # params:
3838+ # cmd: "echo 'Hello from your shell'"
3939+4040+ # And much more! For more information, visit the docs: https://espanso.org/docs/
4141+ #
4242+4343+ # Print the current date
4444+ - trigger: ":date"
4545+ replace: "{{mydate}}"
4646+ vars:
4747+ - name: mydate
4848+ type: date
4949+ params:
5050+ format: "%Y-%m-%d"
5151+5252+ # Print the current time
5353+ - trigger: ":time"
5454+ replace: "{{mytime}}"
5555+ vars:
5656+ - name: mytime
5757+ type: date
5858+ params:
5959+ format: "%H:%M"
6060+6161+ - trigger: ":isotime"
6262+ replace: "{{isotime}}"
6363+ vars:
6464+ - name: isotime
6565+ type: date
6666+ params:
6767+ format: "%Y-%m-%d %H:%M:%S"
···11+This is free and unencumbered software released into the public domain.
22+33+Anyone is free to copy, modify, publish, use, compile, sell, or distribute this software, either in source code form or as a compiled binary, for any purpose, commercial or non-commercial, and by any means.
44+55+In jurisdictions that recognize copyright laws, the author or authors of this software dedicate any and all copyright interest in the software to the public domain. We make this dedication for the benefit of the public at large and to the detriment of our heirs and successors. We intend this dedication to be an overt act of relinquishment in perpetuity of all present and future rights to this software under copyright law.
66+77+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
88+99+For more information, please refer to <http://unlicense.org/>
+7
wtc/README.md
···11+Espanso package that gets a hilarious random commit message.
22+33+
44+55+Instead of writing something meaningful, your can commit with a silly message `git commit -m ":wtc"`
66+77+Powered by [What The Commit](https://whatthecommit.com/).
+7
wtc/_manifest.yml
···11+author: omrilotan
22+description: Get a hilarious random commit message
33+name: wtc
44+title: What the Commit
55+version: 1.0.1
66+homepage: "https://github.com/omrilotan/espanso-package-wtc"
77+tags: ["fun", "git", "shell"]