Skip to content

Instantly share code, notes, and snippets.

@hervehobbes
Created May 24, 2015 09:39
Show Gist options
  • Save hervehobbes/a2bf25b76bad7239c1b4 to your computer and use it in GitHub Desktop.
Save hervehobbes/a2bf25b76bad7239c1b4 to your computer and use it in GitHub Desktop.
Script AutoHotKey pour le travail
::cdt::
Send,
(
Cordialement,
Hervé
)
return
::cdta::
Send,
(
Best regards,
Hervé
)
return
::=lorem::
Send,
(
Regio congestaque instabilis habitabilis reparabat nitidis quem nullo natus. Fuerat undas vesper ne illis pluvialibus coercuit. Volucres numero pendebat inter fuerant inminet tanta. Numero grandia diremit uno terra ventis motura membra obliquis. Moles sive nam nullus undas. Valles nix fuerant premuntur sunt montibus.
)
return
; Ouvre SalesForce.com quand on tape Shift + Win + a
+#a::Run https://eu1.salesforce.com/500/o
; Ouvre Springcard.com quand on tape Shift + Win + s
+#s::Run http://www.springcard.com/
; Ouvre tech.Springcard.com quand on tape Shift + Win + t
+#t::Run http://tech.springcard.com/
; Ouvre gmail quand on tape Shift + Win + m
+#m::Run https://mail.google.com
; Effectue une recherche sur Google, depuis n'importe quelle application, à partir du texte sélectionné, quand on tape Shift + Win + G
+#g::
{
Send, ^c
Sleep 50
Run, http://www.google.fr/search?q=%clipboard%
Return
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment