mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-07 20:27:02 +01:00
96bfb30bce
Signed-off-by: Niels Horn <niels.horn@slackbuilds.org>
14 lines
347 B
Bash
14 lines
347 B
Bash
#!/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
|