🇸🇰 Slovenská verzia | 🇬🇧 English version
Dva AutoHotkey v1 skripty pre zvýšenie produktivity na Windows, verzionované cez Git a distribuované s automatickým inštalátorom.
| Skratka | Súbor | Funkcia |
|---|---|---|
Ctrl+Win+V |
CTRL + WIN + V.ahk |
Vloží obsah schránky ako čistý text (bez formátovania) |
Ctrl+Alt+D |
CTRL+ALT+D-Insert Date.ahk |
Vloží aktuálny dátum a čas vo formáte yyyy-MM-dd_HH-mm-ss |
Oba skripty sa spúšťajú automaticky pri štarte Windows a bežia na pozadí (ikona H v system tray).
- Windows 10 / 11
- PowerShell 5.1+ (súčasť Windows)
- Internet (pri prvej inštalácii)
- Admin práva nie sú potrebné
Otvor PowerShell (nie ako admin) a vlož:
irm https://raw.githubusercontent.com/yardstudio/ahk-scripts/master/install.ps1 | iexInštalátor automaticky:
- Skontroluje a nainštaluje Git (cez winget)
- Skontroluje a nainštaluje AutoHotkey v1 (vždy najnovšia verzia)
- Opýta sa kde uložiť repo (default:
C:\Users\MENO\projekty) - Stiahne skripty z GitHubu (
git clone) - Vytvorí Startup skratky (automatický štart po prihlásení)
- Spustí oba skripty hneď
- Nainštaluj AutoHotkey v1
- Nainštaluj Git pre Windows
- Klonuj repo:
git clone https://github.com/yardstudio/ahk-scripts.git C:\Users\%USERNAME%\projekty\ahk-scripts- Spusti oba
.ahksúbory dvojklikom - Pre automatický štart skopíruj skratky do
shell:startup
- Windows 10 alebo 11
- PowerShell otvorený bez admin práv
- Funkčné internetové pripojenie
- V system tray sú viditeľné dve zelené ikonky
H -
Ctrl+Alt+Dvloží dátum vo formáte2026-06-15_14-30-05 -
Ctrl+Win+Vvloží čistý text (otestuj na tučnom texte z webu) - Po reštarte PC sa skripty spustia automaticky
cd C:\Users\%USERNAME%\projekty\ahk-scripts
git pullPotom reštartuj AHK skripty: pravý klik na H v tray → Exit → spusti znova.
# Po zmene na tvojom PC:
cd C:\Users\%USERNAME%\projekty\ahk-scripts
git add *.ahk
git commit -m "Popis zmeny"
git push
# Na inom PC — stiahni zmeny:
git pullSkript sa nespustí / skratka nefunguje
- Skontroluj zelenú
Hikonku v system tray - Skontroluj že máš AutoHotkey verzia 1.x (nie 2.x)
- Spusti skript ručne: dvojklik na
.ahksúbor
irm ... | iex hlási chybu ExecutionPolicy
Set-ExecutionPolicy -Scope CurrentUser Bypass -ForceGit nie je rozpoznaný po inštalácii
$env:PATH = [System.Environment]::GetEnvironmentVariable('PATH','User') + ';' + [System.Environment]::GetEnvironmentVariable('PATH','Machine')Ctrl+Win+V nefunguje
Skratku môže blokovať iná aplikácia. Skontroluj konflikty klávesových skratiek.
ahk-scripts/
├── CTRL + WIN + V.ahk # Skript: vkladanie čistého textu
├── CTRL+ALT+D-Insert Date.ahk # Skript: vkladanie dátumu
├── install.ps1 # Automatický inštalátor
└── README.md # Dokumentácia
- Skripty vyžadujú AutoHotkey v1 — v2 má inú syntax
install.ps1beží bez admin práv.gitattributesvynucuje CRLF pre.ps1a.ahk(kompatibilita PS 5.1)- Repo je Public — inštalátor funguje bez prihlásenia
Two AutoHotkey v1 productivity scripts for Windows, versioned via Git and distributed with an automatic installer.
| Shortcut | File | Function |
|---|---|---|
Ctrl+Win+V |
CTRL + WIN + V.ahk |
Paste clipboard content as plain text (no formatting) |
Ctrl+Alt+D |
CTRL+ALT+D-Insert Date.ahk |
Insert current date and time as yyyy-MM-dd_HH-mm-ss |
Both scripts start automatically with Windows and run in the background (green H icon in system tray).
- Windows 10 / 11
- PowerShell 5.1+ (built into Windows)
- Internet connection (first install only)
- Admin rights not required
Open PowerShell (not as admin) and paste:
irm https://raw.githubusercontent.com/yardstudio/ahk-scripts/master/install.ps1 | iexThe installer automatically:
- Checks and installs Git (via winget)
- Checks and installs AutoHotkey v1 (always latest version)
- Asks where to store the repo (default:
C:\Users\NAME\projekty) - Downloads scripts from GitHub (
git clone) - Creates Startup shortcuts (auto-start on login)
- Launches both scripts immediately
- Install AutoHotkey v1
- Install Git for Windows
- Clone the repo:
git clone https://github.com/yardstudio/ahk-scripts.git C:\Users\%USERNAME%\projekty\ahk-scripts- Double-click both
.ahkfiles to run them - For auto-start copy shortcuts to
shell:startup
- Windows 10 or 11
- PowerShell opened without admin rights
- Working internet connection
- Two green
Hicons visible in system tray -
Ctrl+Alt+Dinserts date in format2026-06-15_14-30-05 -
Ctrl+Win+Vpastes plain text (test with bold text copied from web) - After PC restart scripts launch automatically
cd C:\Users\%USERNAME%\projekty\ahk-scripts
git pullThen restart AHK scripts: right-click H in tray → Exit → run again.
# After making changes on your PC:
cd C:\Users\%USERNAME%\projekty\ahk-scripts
git add *.ahk
git commit -m "Description of change"
git push
# On another PC — pull changes:
git pullScript won't start / shortcut not working
- Check for green
Hicon in system tray - Verify AutoHotkey version 1.x is installed (not 2.x)
- Run script manually: double-click the
.ahkfile
irm ... | iex gives ExecutionPolicy error
Set-ExecutionPolicy -Scope CurrentUser Bypass -ForceGit not recognized after installation
$env:PATH = [System.Environment]::GetEnvironmentVariable('PATH','User') + ';' + [System.Environment]::GetEnvironmentVariable('PATH','Machine')Ctrl+Win+V not working
Another application may be capturing the shortcut. Check for keyboard shortcut conflicts.
ahk-scripts/
├── CTRL + WIN + V.ahk # Script: plain text paste
├── CTRL+ALT+D-Insert Date.ahk # Script: date insert
├── install.ps1 # Automatic installer
└── README.md # This documentation
- Scripts require AutoHotkey v1 — v2 has different syntax and will not run them
install.ps1runs without admin rights — Git and AHK install to user profile.gitattributesenforces CRLF line endings for.ps1and.ahk(PS 5.1 compatibility)- Repo is Public — installer works without GitHub login
Project: YARD STUDIO s.r.o. | Banská Bystrica, Slovakia