From fa3b06134f6e4f44b5ba295a438034f9bce8b6d5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20Lov=C3=A9n?= Date: Mon, 23 Feb 2026 23:10:23 +0100 Subject: [PATCH] zorin os stuff --- espanso/config/default.yml | 44 ++++++++++++++++++++++++++++++++++++++ espanso/match/base.yml | 22 +++++++++++++++++++ espanso/readme.md | 1 + keyd/default.conf | 8 +++++++ keyd/readme.md | 1 + vscode_settings.json | 2 +- 6 files changed, 77 insertions(+), 1 deletion(-) create mode 100644 espanso/config/default.yml create mode 100644 espanso/match/base.yml create mode 100644 espanso/readme.md create mode 100644 keyd/default.conf create mode 100644 keyd/readme.md diff --git a/espanso/config/default.yml b/espanso/config/default.yml new file mode 100644 index 0000000..4dcda38 --- /dev/null +++ b/espanso/config/default.yml @@ -0,0 +1,44 @@ +# espanso configuration file + +# For a complete introduction, visit the official docs at: https://espanso.org/docs/ + +# You can use this file to define the global configuration options for espanso. +# These are the parameters that will be used by default on every application, +# but you can also override them on a per-application basis. + +# To make customization easier, this file contains some of the commonly used +# parameters. Feel free to uncomment and tune them to fit your needs! + +# --- Toggle key + +# Customize the key used to disable and enable espanso (when double tapped) +# Available options: CTRL, SHIFT, ALT, CMD, OFF +# You can also specify the key variant, such as LEFT_CTRL, RIGHT_SHIFT, etc... +# toggle_key: ALT +# You can also disable the toggle key completely with +# toggle_key: OFF + +# --- Injection Backend + +# Espanso supports multiple ways of injecting text into applications. Each of +# them has its quirks, therefore you may want to change it if you are having problems. +# By default, espanso uses the "Auto" backend which should work well in most cases, +# but you may want to try the "Clipboard" or "Inject" backend in case of issues. +# backend: Clipboard + +# --- Auto-restart + +# Enable/disable the config auto-reload after a file change is detected. +# auto_restart: false + +# --- Clipboard threshold + +# Because injecting long texts char-by-char is a slow operation, espanso automatically +# uses the clipboard if the text is longer than 'clipboard_threshold' characters. +# clipboard_threshold: 100 + +# For a list of all the available options, visit the official docs at: https://espanso.org/docs/ +# + +search_shortcut: off +show_notifications: false diff --git a/espanso/match/base.yml b/espanso/match/base.yml new file mode 100644 index 0000000..00b2df2 --- /dev/null +++ b/espanso/match/base.yml @@ -0,0 +1,22 @@ +# espanso match file + +matches: + + # Print the current date + - trigger: "..date" + replace: "{{mydate}}" + vars: + - name: mydate + type: date + params: + format: "%Y-%m-%d" + + # Print the current time + - trigger: "..time" + replace: "{{mytime}}" + vars: + - name: mytime + type: date + params: + format: "%H:%M" + diff --git a/espanso/readme.md b/espanso/readme.md new file mode 100644 index 0000000..f5a8378 --- /dev/null +++ b/espanso/readme.md @@ -0,0 +1 @@ +https://espanso.org/ diff --git a/keyd/default.conf b/keyd/default.conf new file mode 100644 index 0000000..5046c43 --- /dev/null +++ b/keyd/default.conf @@ -0,0 +1,8 @@ +[ids] +* + +[main] +capslock = overload(control, esc) + +[shift] +capslock = capslock diff --git a/keyd/readme.md b/keyd/readme.md new file mode 100644 index 0000000..9977d99 --- /dev/null +++ b/keyd/readme.md @@ -0,0 +1 @@ +https://github.com/rvaiya/keyd diff --git a/vscode_settings.json b/vscode_settings.json index f7e7c90..2fbbec1 100644 --- a/vscode_settings.json +++ b/vscode_settings.json @@ -1,6 +1,6 @@ { "dev.containers.defaultExtensions": [ - "spmeesseman.vscode-taskexplorer", + "cnshenj.vscode-task-manager", "github.vscode-pull-request-github" ], "dotfiles.repository": "https://git.thomasloven.com/thomas/vsc-dotfiles.git",