Skip to content

Instantly share code, notes, and snippets.

@peterthehan
Last active March 20, 2022 04:44
Show Gist options
  • Save peterthehan/d34cf58363b52dceb0473022925dd804 to your computer and use it in GitHub Desktop.
Save peterthehan/d34cf58363b52dceb0473022925dd804 to your computer and use it in GitHub Desktop.
Convenience script to copy-paste images between Chrome and Discord.
#NoEnv
#SingleInstance, Force
delay := 200
return
#IfWinActive, ahk_exe chrome.exe
~RButton::
Sleep, % delay
Send, y ; https://www.reddit.com/r/chrome/comments/aig340/chromes_hidden_context_menu_shortcuts/
return
#IfWinActive
#IfWinActive, ahk_exe Discord.exe
~RButton::
Sleep, % delay
Send, ^v
KeyWait, RButton, T0.5
If ErrorLevel {
Send, {Enter}
}
return
#IfWinActive
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment