Created
May 24, 2015 09:39
-
-
Save hervehobbes/a2bf25b76bad7239c1b4 to your computer and use it in GitHub Desktop.
Script AutoHotKey pour le travail
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
::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