https://github.com/wille/startuplib
Library for adding your Java application to startup on many different operating systems
https://github.com/wille/startuplib
agent bsd java launch library linux macos registry startup windows
Last synced: 4 months ago
JSON representation
Library for adding your Java application to startup on many different operating systems
- Host: GitHub
- URL: https://github.com/wille/startuplib
- Owner: wille
- License: gpl-3.0
- Created: 2015-05-08T05:16:46.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2016-12-23T09:22:53.000Z (over 9 years ago)
- Last Synced: 2025-10-24T22:34:41.001Z (8 months ago)
- Topics: agent, bsd, java, launch, library, linux, macos, registry, startup, windows
- Language: Java
- Size: 25.4 KB
- Stars: 9
- Watchers: 1
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# startuplib
Library for adding your Java application to startup on many different operating systems
## How it works
### Windows
Writes registry key to ```HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run```
### macOS
Writes [launch agent](https://developer.apple.com/library/mac/documentation/MacOSX/Conceptual/BPSystemStartup/Chapters/CreatingLaunchdJobs.html) to ```~/Library/LaunchAgents/```
### Linux, Solaris and *BSD with XDG compliant DE
Writes [desktop entry](https://wiki.archlinux.org/index.php/Desktop_entries) to ```~/.config/autostart/```
### Headless *nix systems
Refer to [linux-install](https://github.com/redpois0n/linux-install)
## Dependencies
- [oslib](https://github.com/redpois0n/oslib)