Create launchd config for MacOS for use with watch
option
#889
Bas-Man
started this conversation in
Show and tell
Replies: 2 comments 1 reply
-
Attempt to add a sub-command for this: please command on the questions there |
Beta Was this translation helpful? Give feedback.
0 replies
-
How to check output or whether it's working? or what the status 78 means?
|
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Requirements
LaunchAgents
under personalLibrary
directorySteps
LaunchAgents
create file called something likenet.PlexTraktSync.LaunchAtLogin.plist
COMMAND
with the full path to theplextraktsync
command. This can be found using thewhich
command in the terminal.launchctl load Library/LaunchAgents/net.PlexTraktSync.LaunchAtLogin.plist
plextraktsync
should now run any time the machine runs with the user logged in. For my plex server I always have it boot up into the account that runs Plex.You can also disable this by using
launchctl unload Library/LaunchAgents/net.PlexTraktSync.LaunchAtLogin.plist
-- Note that the
launchctl
command is being run from the home directory of the user for which bothPlex
andPlexTraktSync
have been installed.Beta Was this translation helpful? Give feedback.
All reactions