A simple ASCII art clock implemented in C.
- Displays current time in ASCII art
- Customizable colors
- Lightweight and easy to use
git clone https://github.com/arnabdebnath208/asciiclock.git
cd asciiclock/src/C
makecd asciiclock/src/C
./asciiclock
# To display help
./asciiclock --help
# To change background color
./asciiclock -b <color>
# To change digit color
./asciiclock -d <color>
# To change separator color
./asciiclock --colon-color <color>
# To change weekday color
./asciiclock -w <color>
# To change date color
./asciiclock -d <color>
# To change month color
./asciiclock -m <color>
# To change year color
./asciiclock -y <color>
# All color options <color> : Black, Red, Green, Yellow, Blue, Magenta, Cyan, White, DarkGray, LightRed, LightGreen, LightYellow, LightBlue, LightMagenta, LightCyan, LightWhite
- Fork the repository
- Create your feature branch (
git checkout -b feature/your-feature) - Commit your changes (
git commit -am 'Add some feature') - Push to the branch (
git push origin feature/your-feature) - Create a new Pull Request
This project is licensed under the GPL-3.0 - see the LICENSE file for details.


