<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to Home</title><link>https://sourceforge.net/p/midnight-clock/wiki/Home/</link><description>Recent changes to Home</description><atom:link href="https://sourceforge.net/p/midnight-clock/wiki/Home/feed" rel="self"/><language>en</language><lastBuildDate>Sun, 09 Nov 2025 13:55:16 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/midnight-clock/wiki/Home/feed" rel="self" type="application/rss+xml"/><item><title>Home modified by Till Wuttke</title><link>https://sourceforge.net/p/midnight-clock/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v1
+++ v2
@@ -1,6 +1,134 @@
 Welcome to your wiki!
+# Midnight Clock

-This is the default page, edit it as you see fit. To add a new page simply reference it within brackets, e.g.: [SamplePage].
+&lt;img alt="image" height="533" rel="nofollow" src="https://github.com/user-attachments/assets/9cc7bde8-0d79-4ee8-b944-5ae589f96e86" width="856"/&gt;
+&lt;img alt="image" height="533" rel="nofollow" src="https://github.com/user-attachments/assets/a1d0dd36-043f-43d8-a437-c0bb4a87eccc" width="856"/&gt;
+&lt;img alt="image" height="533" rel="nofollow" src="https://github.com/user-attachments/assets/c5937968-b86b-4992-8260-292a780ec923" width="856"/&gt;
+&lt;img alt="image" height="533" rel="nofollow" src="https://github.com/user-attachments/assets/db61b116-f36d-4c1a-86f9-dd564ba28544" width="856"/&gt;
+&lt;img alt="image" height="533" rel="nofollow" src="https://github.com/user-attachments/assets/9cf1152f-cdee-4e23-a617-4ac6ef82748f" width="856"/&gt;
+
+
+A modern, feature-rich, dark-themed clock application for Linux desktops, built with Python and PyQt6. Designed to be both beautiful and functional, it provides all the essential time-keeping tools in one place.
+
+The application remains active in the system tray when closed, ensuring your alarms and timers are never missed.
+
+## Features
+
+-   **Sleek Dark Interface**: A visually appealing dark theme that's easy on the eyes.
+-   **Main Digital Clock**: A large, clear display of the current time and date.
+-   **World Clock**:
+    -   Browse and search a complete list of all available timezones.
+    -   **Pin** your favorite timezones for quick access.
+    -   Pinned clocks are saved and loaded automatically.
+-   **Alarm**:
+    -   Set multiple alarms with custom messages.
+    -   Receive a desktop notification and sound alert when an alarm triggers.
+-   **Timer**: A simple countdown timer that alerts you when time is up.
+-   **Stopwatch**:
+    -   Precise stopwatch with millisecond accuracy.
+    -   **Lap** functionality to record split times.
+-   **System Tray Integration**:
+    -   Minimizes to the system tray instead of closing, keeping alarms active in the background.
+    -   Restore or quit the application directly from the tray icon menu.
+
+## Requirements
+
+This application is designed for Debian-based Linux distributions (like Ubuntu, Linux Mint, etc.). You will need the following packages installed:
+
+-   Python 3
+-   PyQt6 for the graphical interface
+-   Pygame for sound playback
+
+## Installation &amp;amp; Usage
+
+1.  **Clone the repository:**
+    ```bash
+    git clone https://github.com/your-username/midnight-clock.git
+    cd midnight-clock
+    ```
+
+2.  **Install dependencies:**
+    Use `apt` to install the required libraries from your distribution's official repositories.
+    ```bash
+    sudo apt update
+    sudo apt install python3-pyqt6 python3-pygame
+    ```
+
+3.  **Place Asset Files:**
+    For full functionality, make sure the following files are in the project's root directory:
+    -   `icon.png`: The icon used for the window and system tray. A default 128x128 icon is recommended.
+    -   `alarm.wav`: The sound file to be played for alarms and timers.
+
+4.  **Run the application:**
+    ```bash
+    python3 midnight-clock.py
+    ```
+    The application will start, and a `midnight_clock_config.json` file will be created automatically to store your pinned world clocks.
+
+## Building the Debian Package (`.deb`)
+
+If you wish to package the application for easier installation and distribution, you can follow these steps.
+
+1.  **Create the directory structure:**
+    ```bash
+    mkdir -p package/DEBIAN
+    mkdir -p package/usr/bin
+    mkdir -p package/usr/share/applications
+    mkdir -p package/usr/share/icons/hicolor/128x128/apps
+    ```
+
+2.  **Create the `control` file:**
+    Create a file named `control` inside `package/DEBIAN/` with the following content:
+    ```
+    Package: midnight-clock
+    Version: 1.0.0
+    Section: utils
+    Priority: optional
+    Architecture: all
+    Depends: python3, python3-pyqt6, python3-pygame
+    Maintainer: Your Name &amp;lt;your.email@example.com&amp;gt;
+    Description: A modern and cool clock application for Linux.
+     A graphical clock application featuring a digital clock, alarms,
+     a timer, a stopwatch, and world clocks, all with a sleek dark interface.
+    ```
+
+3.  **Copy the application files:**
+    ```bash
+    # Copy the main script and make it executable
+    cp midnight-clock.py package/usr/bin/midnight-clock
+    chmod +x package/usr/bin/midnight-clock
+
+    # Copy the icon
+    cp icon.png package/usr/share/icons/hicolor/128x128/apps/midnight-clock.png
+    
+    # Copy the sound file (optional, but recommended to bundle it)
+    # Note: The script currently looks for the sound in its local directory.
+    # For a system-wide install, you would modify the script to look in /usr/share/midnight-clock/
+    # cp alarm.wav package/usr/share/midnight-clock/alarm.wav 
+    ```
+
+4.  **Create the `.desktop` file:**
+    Create a file named `midnight-clock.desktop` in `package/usr/share/applications/`:
+    ```ini
+    [Desktop Entry]
+    Name=Midnight Clock
+    Comment=A modern and cool clock application
+    Exec=midnight-clock
+    Icon=midnight-clock
+    Terminal=false
+    Type=Application
+    Categories=Utility;
+    ```
+
+5.  **Build the package:**
+    ```bash
+    dpkg-deb --build package
+    ```
+    This will create a `package.deb` file, which can be installed with `sudo apt install ./package.deb`.
+
+## License
+
+This project is licensed under the MIT License. See the [LICENSE](LICENSE) file for details.

 The wiki uses [Markdown](/p/midnight-clock/wiki/markdown_syntax/) syntax.

&amp;lt;/your.email@example.com&amp;gt;&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Till Wuttke</dc:creator><pubDate>Sun, 09 Nov 2025 13:55:16 -0000</pubDate><guid>https://sourceforge.netd7798e44d34d509360fc897d9cc687241dc8032b</guid></item><item><title>Home modified by Till Wuttke</title><link>https://sourceforge.net/p/midnight-clock/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Welcome to your wiki!&lt;/p&gt;
&lt;p&gt;This is the default page, edit it as you see fit. To add a new page simply reference it within brackets, e.g.: &lt;span&gt;[SamplePage]&lt;/span&gt;.&lt;/p&gt;
&lt;p&gt;The wiki uses &lt;a class="" href="/p/midnight-clock/wiki/markdown_syntax/" rel="nofollow"&gt;Markdown&lt;/a&gt; syntax.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;&lt;h6&gt;Project Members:&lt;/h6&gt;
    &lt;ul class="md-users-list"&gt;
        &lt;li&gt;&lt;a href="/u/tiwut/"&gt;Till Wuttke&lt;/a&gt; (admin)&lt;/li&gt;
        
    &lt;/ul&gt;&lt;br/&gt;
&lt;p&gt;&lt;span class="download-button-69109bd93cf7a15c5f6c8aca" style="margin-bottom: 1em; display: block;"&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Till Wuttke</dc:creator><pubDate>Sun, 09 Nov 2025 13:49:14 -0000</pubDate><guid>https://sourceforge.net59f6ea4cfabd796efd04cd9da1d6bc30821b9ff3</guid></item></channel></rss>