Tip for rcmd macOS.
Problem
rcmd is a macOS application that help switching among applications instantly.
However, this is a shareware. The trial version has a limitation, it stops working after a few hours, you have to restart the app to resets the trial.
In this article, I will guide you how to restart rcmd automatically.
Solution
We will create a macOS background service that run at start up. The service will restart rcmd each 30 minutes.
Steps:
Launch rcmd app. You should see its icon in the system tray menu.
Launch your favorite terminal app.
Run
sh
cat << EOF > ~/Library/LaunchAgents/xyz.ansidev.rcmd.autorestart.plist
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>RunAtLoad</key>
<true />
<key>Label</key>
<string>xyz.ansidev.rcmd.autorestart</string>
<key>ProgramArguments</key>
<array>
<string>/usr/bin/osascript</string>
<string>-e</string>
<string>quit app "rcmd"</string>
<string>-e</string>
<string>delay 5</string>
<string>-e</string>
<string>launch app "rcmd"</string>
</array>
<key>StartInterval</key>
<integer>1800</integer>
</dict>
</plist>
EOF- Load service
sh
launchctl load ~/Library/LaunchAgents/xyz.ansidev.rcmd.autorestart.plistYou should see the rcmd icon in the system tray menu was disappeared, then displayed again (because it was restarted successfully)
- Check whether the service was started successfully
sh
launchctl list | grep xyz.ansidev.rcmd.autorestartThe second column (exit code) should display 0 as the output value.
sh
- 0 xyz.ansidev.rcmd.autorestart


