-
-
Save andrewsomething/48475 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
| /* AptURL | |
| * Andrew Starr-Bochicchio <[email protected]> | |
| * MIT/X11 License | |
| */ | |
| CmdUtils.CreateCommand({ | |
| name: "apturl", | |
| icon: "http://www.ubuntu.com/files/favicon-ubuntu.ico", | |
| /* homepage: "http://packages.qa.debian.org/common/index.html", */ | |
| author: { name: "Andrew Starr-Bochicchio", email: "[email protected]"}, | |
| license: "MIT", | |
| description: "Install Ubuntu packages with AptURL.", | |
| help: "apturl [package]", | |
| takes: {"package": noun_arb_text}, | |
| preview: function(pblock, package) { | |
| var template = "Install ${name} on Ubuntu"; | |
| pblock.innerHTML = CmdUtils.renderTemplate(template, {"name": package.text}); | |
| }, | |
| execute: function(package) { | |
| var url = "apt:" + package.text; | |
| Utils.openUrlInBrowser(url); | |
| } | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment