Compare commits

...

2 Commits
nix ... master

Author SHA1 Message Date
5691bd9fdc Add vscode settings base 2025-10-14 00:19:03 +02:00
27c2569984 Add capslock autohotkey script 2025-07-09 23:28:06 +02:00
2 changed files with 41 additions and 0 deletions

28
capslock.ahk Executable file
View File

@ -0,0 +1,28 @@
#Requires AutoHotkey v2.0
SetCapsLockState "AlwaysOff"
Capslock::
{
Send "{LControl Down}"
KeyWait("CapsLock")
Send "{LControl Up}"
if ( A_PriorKey = "CapsLock" )
{
Send "{Esc}"
}
SetCapsLockState("Off")
}
::..date::
{
Send A_YYYY "-" A_MM "-" A_DD
Send A_EndChar
}
::..time::
{
Send A_Hour ":" A_Min
Send A_EndChar
}

13
vscode_settings.json Normal file
View File

@ -0,0 +1,13 @@
{
"dev.containers.defaultExtensions": [
"spmeesseman.vscode-taskexplorer",
"github.vscode-pull-request-github"
],
"dotfiles.repository": "https://git.thomasloven.com/thomas/vsc-dotfiles.git",
"projectManager.tags": ["Personal", "Work", "cade", "hass"],
"diffEditor.ignoreTrimWhitespace": false,
"editor.formatOnSave": true,
"chat.agent.enabled": false,
"telemetry.feedback.enabled": false,
"telemetry.editStats.enabled": false
}