Simple Windows desktop binary clock
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
/lemon.sh ced1c97824
Update README.md
The "Releases" executable will always be unsigned
2 years ago
screenshots Add screenshots 2 years ago
.gitattributes Initial commit 2 years ago
.gitignore Initial commit 2 years ago
CMakeLists.txt Initial commit 2 years ago
LICENSE Initial commit 2 years ago
README.md Update README.md 2 years ago
binclock.ico Initial commit 2 years ago
main.c Fix semantics 2 years ago
main.rc Initial commit 2 years ago

README.md

binshclock

Simple Windows desktop binary clock written in pure C.

Overview

I decided to write a very simple desktop binary clock because I find the existing ones too heavy. binshclock operates entirely in the Windows Console and makes use of the Windows Console API.

binshclock binshclock

Usage

Just run the executable! (You may have to get through a SmartScreen dialog). To open the About screen click the bottom-right corner of the window.

Building

binshclock has no dependencies besides the Windows system library, so you only need CMake and a working compiler. Personally, I use the TDM-GCC compiler.

git clone https://github.com/lemon-sh/binshclock
cd binshclock
mkdir build
cd build
cmake .. -DCMAKE_BUILD_TYPE="Release"
mingw32-make