blob: 24bc2134003f7b22e55440d9e34b33cf5fb22e21 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
## Bash Usage
add to `~/.profile`
```bash
function __env_<name>() { # replace <name>
// add commands, examples:
__activator oraclejdk8 idea-iu2016 groovy-bin-2.4.5
export FOO=bar
}
# to use dmenu-software.sh
export PATH=$PATH:/opt/scripts/bin/
# at the end!
source /opt/scripts/lib/activate.inc.sh
```
## Build packages
```
# ./gradlew packages:jvmtop:buildDeb
# dpkg -i packages/jvmtop/build/distributions/jvmtop*deb
```
|