Created
October 16, 2012 16:01
-
-
Save kyagi/3900214 to your computer and use it in GitHub Desktop.
bookmark.command on mac using wish (tcl/tk)
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
| #!/bin/sh | |
| # the next line restarts using wish \ | |
| exec wish "$0" "$@" & | |
| button .b0 -text "github" -command "exec open https://github.com/" | |
| button .b1 -text "bitbucket" -command "exec open https://bitbucket.org/" | |
| button .b2 -text "login - serverA" -command "exec serverA.scpt" | |
| button .b3 -text "iterm" -command "exec open -a /Applications/iTerm.app" | |
| pack .b0 .b1 .b2 .b3 -fill x |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment