I installed autohotkey and now I don't know what to do with it. Post ideas

I installed autohotkey and now I don't know what to do with it. Post ideas.

Attached: proxy.duckduckgo.cokm.jpg (474x474, 14K)

Other urls found in this thread:

youtube.com/watch?v=GZEoss4XIgc
twitter.com/NSFWRedditGif

Install Gentoo

each time you press a key it plays Last Resort

Better yet it restarts Last resort every time you push X.

Disable your windows key with it

Or remap entire keyboard to Colemak on a key combo

hotkeys to change the windows volume setting because for some reason the OS doesn't include them as an option
I also use ctrl-L to focus the address bar in windows explorer like in a browser

Window tiler

make runescape macros

a game

I have extra buttons on my mouse.
button + scroll to change the volume is god tier

Uninstall it and then kill yourself, you colossal fucking retard.

ITT: Skiddie General

>I don't know what a skiddie is

I have:
Window arranging shortcuts
mouse button + scroll to control volume
mouse buttons to control foobar
shortcuts to makeup for lack of numpad for CAD
typing "!;" replaces it with "!important;" for css
shortcut to send nospace unicode character
disables capslock

Attached: 12048618.jpg (250x250, 8K)

youtube.com/watch?v=GZEoss4XIgc

I use it for the following shortcuts:
Ctrl Alt T: Toggle window always on top
Ctrl Alt S: Snipping Tool
Start C: Calculator
Start N: Notepad

Also to automate a bunch of stuff I won't go into detail right now but it includes things like automated filling of forms, backup solutions for tricky shit, (re-) naming and sorting files...

Pic related disables capslock, but doesn't disable it if I press alt + caps or shift + caps.
How do I add them to the script?

Attached: 97867854.png (165x57, 2K)

watch

Make a key shortcut that plays Linkin Park In The End whenever you press it

What about it?

The only thing I use it for is binding volume controls to my Model M.

It has info for everything

is this a social experiment
I saw this exact thread with exactly the same posts before

I'd be interested to see the re-naming, sorting and backup stuff.
I use free file sync and reNamer for that

look into filejuggler

I remapped the print screen button on my ThinkPad to bring up the multiple desktop menu

fpbp

You're installing a scripting language on Windows to tinker with your system, so you may as well install Gentoo GNU/Linux.

>having to install Autohotkey to do these things, when you can just install GNU/Linux which is designed to do stuff like this

I have hotkeys for opening common apps, ctrl+c for chrome, etc. I mostly use it for game macros. The most useful productivity script I use is

; Switch between open Chrome windows
Pause::
WinActivateBottom, ahk_exe chrome.exe
Return


Allows me to have multiple chrome windows and scroll through them with a key. It's like a more efficient alt-tab per-app.

Kill your drives with a 63 passes wipe on demand. Stall the bioluminiscent folks while the programs delete all data on the background.

No one wants to use your faggot nerd OS. Just shut the fuck up, and go back to drawing peppers in gimp and recompiling your kernel.

It doesn't run the programs I need, natively.

Are you mad because I'm flexing on you, user?

Shift win s also does snipping tool natively iirc

Stick it up your ass

Doesn't win+directions already do this?

It's better to remap keys with keytweak, you don't want unnecessary programs running in the background

I do autocorrect because I'm lazy, typing "dont" replaces it with "don't", etc. Pretty neat.

Yeah, but you can set specific dimensions for windows, bind it to better shortcuts than having to cycle through arrows, and it doesn't break as often as native win10 tiling.

This is my list of my essential ahk scripts:
- Made my own app launcher.

- Window management

- Using the scroll wheel on the taskbar to adjust volume.

- Using the scroll wheel on the bottom corners of the screen to minimize/maximize all windows.

- Double clicking the taskbar will show/hide all desktop icons.

You, uh, you know you can just remap capslock to whatever the fuck you want through the registry, right?

install gentoo and kys

I use the "Break" button for this.
Very useful.

I automated idling in GTA V with it.
> set up business
> enable script
> mouse moves every 5 minutes
> power off the display, turn 360 and walk away
> return in 4hrs
> do one sell mission
I wasted about 1000 hours to get everything without Shark Cards.

>remap Caps to additional Ctrl
>remap actual Caps lock toggle to Shift + Caps if you need CRUISE CONTROL
>if you use a desktop and have a monitor with DDC/CI download ScreenBright and change brightness with hotkeys
>set max CPU state in your power plan to 99% to disable turbo boost when not needed, switch to high performance profile with hotkeys
>2x Numlock to run calc.exe

write a script to post a thread asking what to do with autohotkey

Here you go nigger. Copy & paste GNU\Linux style:

cos_mousedrag_treshold := 20 ; pixels


#IfWinNotActive ahk_class ConsoleWindowClass

~lButton::
MouseGetPos, cos_mousedrag_x, cos_mousedrag_y
keywait lbutton
mousegetpos, cos_mousedrag_x2, cos_mousedrag_y2
if (abs(cos_mousedrag_x2 - cos_mousedrag_x) > cos_mousedrag_treshold
or abs(cos_mousedrag_y2 - cos_mousedrag_y) > cos_mousedrag_treshold)
{
wingetclass cos_class, A
if (cos_class == "Emacs")
sendinput !w
else
sendinput ^c
}
if (A_PriorHotKey = "~lButton" && A_TimeSincePriorHotkey < "500") {
if (cos_class == "Emacs")
sendinput !w
else
sendinput ^c
}
return

~mbutton::
WinGetClass cos_class, A
if (cos_class == "Emacs")
SendInput ^y
else
SendInput ^v
return

#IfWinNotActive


;; clipx
^mbutton::
sendinput ^+{insert}
return
}}

Attached: 4david.jpg (1002x1048, 113K)

Get a job

Do I need some specific hardware with this?
Basically I need to map a keystroke to a word, and use it to speed things up when writing.

Attached: 43705871_307513396734091_7035106942718620181_n.jpg (640x800, 47K)

No specific hardware needed. Use this to get started:
a::
sendinput word
return

Attached: 269.png (617x466, 222K)

Thanks, I need it to quickly write and print prescriptions, and since I usually prescribe very limited set of medications, a 20 key is more than enough, all I need is to label it.

You can implement unix style copy & paste ( superior in my opinion ) - can't paste for some reason.

Create auto potion macro for MMOs.