mirror of
https://github.com/fruworg/fruworg.github.io.git
synced 2025-01-18 03:40:51 +03:00
Compare commits
2 Commits
dcef7fcb06
...
14ab9aaca8
Author | SHA1 | Date | |
---|---|---|---|
14ab9aaca8 | |||
a0779bf03b |
46
content/posts/autohotkey.md
Normal file
46
content/posts/autohotkey.md
Normal file
@ -0,0 +1,46 @@
|
||||
---
|
||||
title: Полезные бинды клавиш в Windows
|
||||
description: AutoHotkey v2
|
||||
date: 2025-01-14T11:36:00+01:00
|
||||
tags: [windows]
|
||||
---
|
||||
|
||||
## Вступление
|
||||
Для бинда клавиш я использую [AutoHotkey](https://www.autohotkey.com/download/ahk-v2.exe). Для автозапуска нужно перенести `.ahk` файлы в `shell:startup`.
|
||||
|
||||
## CapLang.ahk
|
||||
Смена раскладки по нажатию на `CapsLock`. Сам `CapsLock` переключается через `Shift+CapsLock`.
|
||||
|
||||
```python
|
||||
SendMode("Input")
|
||||
SetWorkingDir A_ScriptDir
|
||||
+CapsLock::SetCapsLockState !GetKeyState("CapsLock", "T")
|
||||
CapsLock::Send "{Alt Down}{Shift Down}{Shift Up}{Alt Up}"
|
||||
```
|
||||
|
||||
## Kitty.ahk
|
||||
Запуск Kitty по нажатию на кнопку `Copilot`.
|
||||
|
||||
```python
|
||||
SendMode("Input")
|
||||
SetWorkingDir A_ScriptDir
|
||||
+#f23:: Run "C:\Program Files\Kitty\kitty.exe -load <your-profile-name>"
|
||||
```
|
||||
|
||||
## WSL.ahk
|
||||
Запуск WSL по нажатию на `Ctrl+Alt+T`
|
||||
|
||||
```python
|
||||
SendMode("Input")
|
||||
SetWorkingDir A_ScriptDir
|
||||
<^<!t::Run 'powershell.exe -noexit -command "cd <wsl-home-dir>; wsl"'
|
||||
```
|
||||
|
||||
## PrintScreen.ahk
|
||||
Скриншот нажатием на правый альт.
|
||||
|
||||
```python
|
||||
SendMode("Input")
|
||||
SetWorkingDir A_ScriptDir
|
||||
RAlt::PrintScreen
|
||||
```
|
Loading…
x
Reference in New Issue
Block a user