[GH-ISSUE #53] Show clock in the video #41

Closed
opened 2026-03-01 15:39:36 +03:00 by kerem · 1 comment
Owner

Originally created by @yamamoo on GitHub (Dec 15, 2017).
Original GitHub issue: https://github.com/budtmo/docker-android/issues/53

Hi.

Is there an easy way to show current time in the recorded video? The emulator shows the hour and minute clock, but I want to see the seconds.

Originally created by @yamamoo on GitHub (Dec 15, 2017). Original GitHub issue: https://github.com/budtmo/docker-android/issues/53 Hi. Is there an easy way to show current time in the recorded video? The emulator shows the hour and minute clock, but I want to see the seconds.
kerem 2026-03-01 15:39:36 +03:00
Author
Owner

@yamamoo commented on GitHub (Jan 9, 2018):

Looks like I can run a simple script like this to show the current time on the Appium Server terminal window title.

#!/bin/bash
while true
do
    wmctrl -r "Appium Server" -N "Appim Server $(date '+%Y-%m-%d %H:%M:%S')"
    sleep 1
done

The Android container does not have the wmctrl command, so it needs to be installed.
novnc

<!-- gh-comment-id:356379975 --> @yamamoo commented on GitHub (Jan 9, 2018): Looks like I can run a simple script like this to show the current time on the Appium Server terminal window title. ``` #!/bin/bash while true do wmctrl -r "Appium Server" -N "Appim Server $(date '+%Y-%m-%d %H:%M:%S')" sleep 1 done ``` The Android container does not have the wmctrl command, so it needs to be installed. <img width="494" alt="novnc" src="https://user-images.githubusercontent.com/5489337/34737721-907b5312-f53c-11e7-8714-f45fb629a5e9.png">
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/docker-android#41
No description provided.