Fun Rainbow Clock for Batch Files

1.0K32

Intro: Fun Rainbow Clock for Batch Files

This is a simple code to display the time in multiple colours.

Code:

@echo off
title Multi coloured time

:1

color 0a

echo Time: %time%

goto 2

:2

color 0b

echo Time: %time%

goto 3

:3

color 0c

echo Time: %time%

goto 4

:4

color 0d

echo Time: %time%

goto 1

STEP 1: Single Line Display

@echo off

Title Clock

Colour 8e

:a

Time...%time%

Cls

Goto a

This will show the time on one line instead of multiple.

2 Comments

Cool program I tried it out, Cool rainbow effect ! Is time an inbuilt variable like random ? Would it be possible to have only one statement (BOLD) in the middle of the page? I mean that, the statement might be recurring but would it be able to recur ONLY in the middle of the page?

Yes, it uses your system time. I haven't found away yet but if I do I will add it here as an update.