blob: 19ae63735aa08563ff77aff9b5801dfc3a30f9a9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/bin/bash
# startup script for bookbinder
# modified by the SlackBuilds.org team
# create directory if it does not exist yet
[ ! -e ~/bookbinder ] && mkdir ~/bookbinder
# change to user's bookbinder directory.
# this is where the signatures will be saved.
cd ~/bookbinder
# call the program
java -jar /usr/share/bookbinder/bookbinder3.0.jar
|