-
Notifications
You must be signed in to change notification settings - Fork 1
Raycast Commands
Sebastian Stein edited this page Jan 22, 2025
·
1 revision
To make using the rolling-cli more convenient to use it can be integrated into Raycast (Mac Spotlight alternative) by adding script commands to raycast (see how to add script commands here)

Note: this will show the status even without calling the command (will be refreshed every 10 seconds)
#!/bin/zsh
# Required parameters:
# @raycast.schemaVersion 1
# @raycast.title rippling status
# @raycast.mode inline
# Optional parameters:
# @raycast.icon 🔁
# @raycast.refreshTime 10s
rippling-cli status
#!/bin/zsh
# Required parameters:
# @raycast.schemaVersion 1
# @raycast.title rippling clock in
# @raycast.mode compact
# Optional parameters:
# @raycast.icon ▶️
rippling-cli clock-in
#!/bin/zsh
# Required parameters:
# @raycast.schemaVersion 1
# @raycast.title rippling clock out
# @raycast.mode compact
# Optional parameters:
# @raycast.icon ⏹️
rippling-cli clock-out
#!/bin/zsh
# Required parameters:
# @raycast.schemaVersion 1
# @raycast.title rippling start break
# @raycast.mode compact
# Optional parameters:
# @raycast.icon ⏸️
rippling-cli start-break
#!/bin/zsh
# Required parameters:
# @raycast.schemaVersion 1
# @raycast.title rippling end break
# @raycast.mode compact
# Optional parameters:
# @raycast.icon ▶️
rippling-cli end-break