Created
February 1, 2018 07:47
-
-
Save dustinlacewell-wk/4292a85122a30a7d1ae9c223ba1940f6 to your computer and use it in GitHub Desktop.
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
(defhydra hydra-aws-saml (:hint nil :color blue) | |
" | |
╭──────────┐ | |
Account │ AWS SAML │ | |
╭────────────────┴──────────╯ | |
[_d_] dev | |
[_p_] prod | |
[_c_] corp | |
_<f19>_ to close | |
───────────────────────────── | |
" | |
("d" (lambda () (interactive) (aws-get-saml-for "dev"))) | |
("p" (lambda () (interactive) (aws-get-saml-for "prod"))) | |
("c" (lambda () (interactive) (aws-get-saml-for "corp"))) | |
("<f19>" nil)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment