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

  1. #!/usr/bin/openrc-run
  2. depend() {
  3. need net
  4. need localmount
  5. }
  6. start() {
  7. ebegin "Starting quark"
  8. start-stop-daemon --background --start --exec /usr/local/bin/quark -- -p 9999 -d /home/yigit/.dotfiles/browser/startpage/dist -h 127.0.0.1
  9. eend $?
  10. }
  11. stop() {
  12. ebegin "Stopping myApp"
  13. eend $?
  14. }