Skip to content

Commit

Permalink
💫 AutoHotkey eklendi
Browse files Browse the repository at this point in the history
AutoHotkey, windows için Kısayol oluşturucu  olarak geçmektedir
  • Loading branch information
yemreak committed Sep 29, 2019
1 parent 39a9a0a commit 0ecd7f8
Show file tree
Hide file tree
Showing 3 changed files with 52 additions and 0 deletions.
1 change: 1 addition & 0 deletions SUMMARY.md
Expand Up @@ -160,6 +160,7 @@
- [Yavaşlayan Bilgisayarı Hızlandırma](./%C4%B0%C5%9Fletim%20Sistemi%20Notlar%C4%B1/Windows%2010/2%20-%20Yava%C5%9Flayan%20Bilgisayar%C4%B1%20H%C4%B1zland%C4%B1rma.md)
- [Windows 10 için Faydalı Uygulamalar](./%C4%B0%C5%9Fletim%20Sistemi%20Notlar%C4%B1/Windows%2010/3%20-%20Windows%2010%20i%C3%A7in%20Faydal%C4%B1%20Uygulamalar.md)
- [Windows 10 Komut İstem (CMD) Notları](./%C4%B0%C5%9Fletim%20Sistemi%20Notlar%C4%B1/Windows%2010/4%20-%20Windows%2010%20Komut%20%C4%B0stemi%20%28CMD%29%20Notlar%C4%B1.md)
- [💫 AutoHotkey](./%C4%B0%C5%9Fletim%20Sistemi%20Notlar%C4%B1/Windows%2010/AutoHotkey.md)
- [Windows 10 Tüm Faydalı Uygulamalar](./%C4%B0%C5%9Fletim%20Sistemi%20Notlar%C4%B1/Windows%2010/X%20-%20Windows%2010%20T%C3%BCm%20Faydal%C4%B1%20Uygulamalar.md)
- [Registery Scriptlerim](./%C4%B0%C5%9Fletim%20Sistemi%20Notlar%C4%B1/Windows%2010/Registery%20Scriptlerim/README.md)
- [Windows 10 Diğer Notlar](./%C4%B0%C5%9Fletim%20Sistemi%20Notlar%C4%B1/Windows%2010/Windows%2010%20Di%C4%9Fer%20Notlar)
Expand Down
Expand Up @@ -62,6 +62,7 @@ Siteye girdiğinizde sırasıyla alttaki ayarları açamınız | seçmeniz gerek
| [🖱 Numix Cursor Theme](https://drive.google.com/uc?id=1odtFIqAEfnvBH5Zk5ZefPnm77kZIxxQp) | Mouse teması |
| [🖼 PaintNet](https://www.dotpdn.com/downloads/pdn.html) | Resim düzenleme uygulaması |
| [🍫 Chocolatey](https://chocolatey.org/) | Windows paket yöneticisi |
| [💫 AutoHotkey](https://www.autohotkey.com/) | Kısayol oluşturucu |

### 🍫 Chocolatey ve Tüm Uygulamaların Kurulum Scripti

Expand Down
50 changes: 50 additions & 0 deletions İşletim Sistemi Notları/Windows 10/AutoHotkey.md
@@ -0,0 +1,50 @@
---
description: Windows üzerinde kişisel kısayolları ve scriptleri oluşturmaya olanak sağlar.
---

# 💫 AutoHotkey

## 🗽 Açıklama

- Çok stabil çalışmaktadır, windows'un kendi içindeki kısayol sisteminden daha verimlidir
- VsCode üzerinden script yazacaksanız [AutoHotkey](https://marketplace.visualstudio.com/items?itemName=slevesque.vscode-autohotkey) eklentisini indirmeniz tavsiye edilir

> Windows 10'da denenmiştir.
## Pencere Açma, Açıksa Gizleme

- `WinName` alanına kendi pencere isminizi yazmayı unutmayın.
- Bu örnek mesajlaşma uygulamarını tek platformda sunan [Rambox](https://rambox.pro/) için kısayoldur

```ahk
#SingleInstance Force
SetTitleMatchMode, 2
WinName=Rambox
;WinName=%A_ScriptName%
return
f1::
; msgbox before test
IfWinExist, %WinName%
{
; msgbox window %WinName% exists
WinGet, WinState, MinMax
; msgbox %WinName%
if (WinState = -1)
WinRestore
else
{
; WinRestore
WinMinimize
}
}
else
msgbox window %WinName% could not be found
return
```

> [Minimize and Restore Window with one command](https://autohotkey.com/board/topic/49207-minimize-and-restore-window-with-one-command/?p=306623)

0 comments on commit 0ecd7f8

Please sign in to comment.