Timer

Countdown and count-up timer with presets, fullscreen display, API control, and Stream Deck integration.

Cliqer includes a built-in presentation timer with countdown and count-up modes, customizable presets, a fullscreen display window, and a REST API for external control.

Timer Modes

ModeDescription
Count Down (default)Counts from the set time to 0:00. Enters overtime (red) if it passes zero.
Count UpCounts from 0:00 upward to track elapsed time.

Toggle between modes in Settings → Behavior → Count Down/Up.

Presets

Four customizable presets let you quickly set common timer durations:

  • Default values: 5, 10, 15, and 20 minutes
  • Tap a preset to set the timer to that value
  • Edit a preset by selecting it and adjusting the minutes — the new value is saved automatically
Live Sync: Preset changes propagate to connected Stream Deck devices instantly. See Stream Deck Integration for details.

Quick Adjust Buttons

In addition to presets, the timer offers quick-adjust controls:

ButtonAction
+1 / +2 / +5Add 1, 2, or 5 minutes to the timer
−1 / −2 / −5Subtract 1, 2, or 5 minutes
Start / StopToggle timer running state
ResetReset to the active preset value

These are available in the Cliqer UI, on connected Stream Deck hardware, and via the Timer API.

Fullscreen Timer Window

Open a dedicated fullscreen timer display for confidence monitors or stage displays:

  1. Click the fullscreen timer button in the Timer panel
  2. A new window opens showing the timer in large, easily readable text
  3. The display updates in real time as the timer counts
Confidence Monitor: Position the fullscreen timer window on a secondary display facing the stage so presenters can see their remaining time at a glance.

Timer API

Control the timer remotely via Cliqer's local HTTP API. Endpoints are served on the same local address used by the Cliqer host application.

Read Timer State

GET /timer/state

Returns the current timer state:

{
  "time": "14:30",
  "isRunning": true,
  "isOvertime": false,
  "presets": [5, 10, 15, 20]
}

Timer Actions

POST /timer/:action
ActionDescription
startStart the timer
stopStop the timer
resetReset to active preset
plus1 / plus2 / plus5Add 1 / 2 / 5 minutes
minus1 / minus2 / minus5Subtract 1 / 2 / 5 minutes
preset5 / preset10 / preset15 / preset20Set timer to a preset value
Local Only: The timer API is only accessible from the machine running Cliqer. It is not exposed to the network.

Overtime Behaviour

When the timer reaches 0:00 in countdown mode and continues running:

  • The timer enters overtime and counts negative (e.g., −1:30)
  • The display colour changes to red to alert the presenter
  • The overtime state is reflected in the API response (isOvertime: true)
  • Stream Deck timer display turns red

See also: Stream Deck Integration · NDI Timer Output

Copyright © 2026. All rights reserved.