Another copy of my dotfiles. Because I don't completely trust GitHub.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

19 lines
291 B

#!/usr/bin/openrc-run
depend() {
need net
need localmount
}
start() {
ebegin "Starting quark"
start-stop-daemon --background --start --exec /usr/local/bin/quark -- -p 9999 -d /home/yigit/.dotfiles/browser/startpage/dist -h 127.0.0.1
eend $?
}
stop() {
ebegin "Stopping myApp"
eend $?
}