Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/spajus/hawkscope
Cross-platform pluggable menu based launcher
https://github.com/spajus/hawkscope
Last synced: 7 days ago
JSON representation
Cross-platform pluggable menu based launcher
- Host: GitHub
- URL: https://github.com/spajus/hawkscope
- Owner: spajus
- License: other
- Created: 2014-02-19T18:56:15.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2014-02-19T19:27:01.000Z (almost 11 years ago)
- Last Synced: 2024-12-11T17:29:17.038Z (about 1 month ago)
- Language: Java
- Size: 7.95 MB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: changelog.txt
- License: license.txt
Awesome Lists containing this project
README
# Hawkscope
Cross-platform pluggable menu based launcher
## For Mac
![Screenshot Mac](http://lh6.ggpht.com/_nP8Aa6cTHpo/Sdc2NukoLRI/AAAAAAAABh4/eaZE1GkLjrM/s720/hs6.mac.png)## For Linux
![Screenshot Linux](http://lh6.ggpht.com/_nP8Aa6cTHpo/Sdc2N8yXdII/AAAAAAAABiA/qHH_7nlZO2c/s720/hs6.ubuntu.png)## For Windows
![Screenshot Windows](http://lh5.ggpht.com/_nP8Aa6cTHpo/Sdc2OGXh3XI/AAAAAAAABiI/4E7d2TNFJFM/s512/hs6.vista.png)## Plugins
You can find plugins here: [spajus/hawkscope-plugins](https://github.com/spajus/hawkscope-plugins)
## Building Hawkscope
### Prequisites
To build Hawkscope executable jar, you need:
* JDK 5+
* Maven 2.0.6+### Adding SWT native library to local Maven repository
Hawkscope uses Eclipse SWT native libraries for each os / arch. Library
dependency is automatically selected via Maven profiles in pom.xml.
Current profiles are: win32, win64, linux32, linux64.To install SWT native library to local Maven repository, find out your
system architecture (i.e. if you're on Windows XP, it is most probably 32 bit,
so your architecture would be win32), then install the appropriate jar from
Hawkscope project's /lib folder. Refer to lib/install.txt to find the
mvn install:install-file line that is suitable for you.If you want to build Hawkscope and there is no profile for your operating system
and CPU architecture, you can create new Maven profile in pom.xml, download your
SWT implementation from http://www.eclipse.org/swt/ and install it. Please
feel free to contribute new profiles.### Packaging Hawkscope + dependencies into executable JAR
To build an executable jar, simply run:
```console
$ mvn clean package
```The jar will be in target/ folder, named: `hawkscope-(version)-(os)-(arch)-jar-with-dependencies.jar`
## Running Hawkscope
### Running Hawkscope from source folder
Running directly from source is good for debugging purposes. In console, execute:```console
$ mvn clean compile exec:java -Dexec.mainClass=com.varaneckas.hawkscope.Launcher -e
```### Running Hawkscope from executable JAR
Doubleclick the executable jar, or execute in console:
```console
$ java -jar hawkscope-.jar
```