Simple Windows desktop binary clock
Go to file
/lemon.sh ced1c97824
Update README.md
The "Releases" executable will always be unsigned
2021-03-07 11:45:26 +01:00
screenshots Add screenshots 2021-03-07 11:34:15 +01:00
.gitattributes Initial commit 2021-03-07 11:17:02 +01:00
.gitignore Initial commit 2021-03-07 11:17:02 +01:00
CMakeLists.txt Initial commit 2021-03-07 11:17:02 +01:00
LICENSE Initial commit 2021-03-07 11:17:02 +01:00
README.md Update README.md 2021-03-07 11:45:26 +01:00
binclock.ico Initial commit 2021-03-07 11:17:02 +01:00
main.c Fix semantics 2021-03-07 11:19:50 +01:00
main.rc Initial commit 2021-03-07 11:17:02 +01:00

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