Warning, /utilities/daykountdown/README.md is written in an unsupported language. File is not indexed.

0001 # DayKountdown
0002 A date countdown app written in QML/Kirigami and C++, for use with KDE Plasma on Linux.
0003 
0004 ![](screenshots/Screenshot1.png)
0005 
0006 The app counts the days towards a date of your choice.
0007 
0008 ![](screenshots/Screenshot2.png)
0009 
0010 It allows you to pick a date, provide a name, and a short description for your countdowns.
0011 
0012 There is also [an additional Plasma desktop widget](https://github.com/elChupaCambra/DayKountdown-Plasmoid) available for use with DayKountdown.
0013 
0014 ## Features
0015 
0016 - Adding and removing countdowns
0017 - Compatibility with both desktop and mobile form factors
0018 - Import and export countdowns from .JSON files
0019 - Sorting by date, name, and creation time
0020 - Sync with your KDE Plasma calendars and easily add events from there into your countdowns
0021 
0022 ## Prerequisites
0023 
0024 - A Linux install
0025 - Qt5 packages from your distribution's repositories
0026 - KDE packages (including Kirigami)
0027 - CMake
0028 - extra-cmake-modules
0029 
0030 ## Compiling
0031 
0032 First, clone this repository through the terminal by running:
0033 
0034 `git clone https://invent.kde.org/plasma-mobile/daykountdown.git`
0035 
0036 Then enter the cloned repo directory and let `cmake` configure the project to use the build folder `build`. 
0037 
0038 `cmake -S . -B build`
0039 
0040 Once that's done tell `cmake` to build the project:
0041 
0042 `cmake --build build`
0043 
0044 Our binary will be located in `build/src/daykountdown`. Alternatively, we can install daykountdown by running:
0045 
0046 `cmake --build build --target install`
0047 
0048 DayKountdown should now appear in your application menu!