The following can be used as a code along but the project has been moved to : https://github.com/abpanic/Task-Tracker
It has more features, being used by almost 35 SDK Engineers for daily Task management and I will provide a code along for it in addition to creating executables for distribution
I had to install Ubuntu on my personal machine and spend some time up-skilling. I learnt about the Pomodoro Technique for better time management and realised that there was a need for an app for Ubuntu since none of the apps provided the functionality I wanted.
Hence, the project started of and the completed component in its alpha version is here: https://abpanic.github.io/PomodoroTimer/
In this blog post, I'll be discussing the build process of a custom Pomodoro Timer created for my use case. Let's dive into the details.
The Build Process
Installing Pre-requisite
Visual Studio Code
I started by creating a new file in Visual Studio Code with the filename "PomodoroTimer.py" and added an initial scaffolding to outline the main components of the application. The starter code looks like this:
import tkinter as tk
class PomodoroTimer:
def __init__(self, master):
self.master = master
master.title("Pomodoro Timer")
# Create timer label
self.timer_label = tk.Label(master, text="00:00", font=("Arial", 48))
self.timer_label.pack(pady=50)
# Create timer control buttons
self.start_button = tk.Button(master, text="Start", command=self.start_timer)
self.start_button.pack(side="left", padx=10)
self.pause_button = tk.Button(master, text="Pause", command=self.pause_timer, state="disabled")
self.pause_button.pack(side="left", padx=10)
self.stop_button = tk.Button(master, text="Stop", command=self.stop_timer, state="disabled")
self.stop_button.pack(side="left", padx=10)
def start_timer(self):
pass
def pause_timer(self):
pass
def stop_timer(self):
pass
root = tk.Tk()
app = PomodoroTimer(root)
root.mainloop()
The starter code is just the scaffolding of the application, and it's okay not to have all the components functionally coded in the first go. However, running the starter code in VSCode should launch the app, as we kick off and it should launch fine as it did.
Next, I added the rest of the code components to ensure the application is functional and performs the tasks it's supposed to. As you can see the start, pause and stop timer function was missing so was the timer and state of the app. We also added countdown and timer label
import tkinter as tk
class PomodoroTimer:
def __init__(self, master):
...//code here remains the same
master.title("Pomodoro Timer")
self.seconds_left = 25 * 60 # 25 minutes
self.is_running = False
...//code here remains the same
def countdown(self):
if self.seconds_left > 0 and self.is_running:
self.seconds_left -= 1
self.update_timer_label()
self.master.after(1000, self.countdown) # Call this method again after 1000 ms (1 second)
def update_timer_label(self):
minutes, seconds = divmod(self.seconds_left, 60)
self.timer_label.configure(text=f"{minutes:02d}:{seconds:02d}")
def start_timer(self):
if not self.is_running:
self.is_running = True
self.start_button.config(state="disabled")
self.pause_button.config(state="normal")
self.stop_button.config(state="normal")
self.countdown()
def pause_timer(self):
if self.is_running:
self.is_running = False
self.start_button.config(state="normal")
self.pause_button.config(state="disabled")
def stop_timer(self):
if self.is_running or self.seconds_left != 25 * 60:
self.is_running = False
self.seconds_left = 25 * 60
self.update_timer_label()
self.start_button.config(state="normal")
self.pause_button.config(state="disabled")
self.stop_button.config(state="disabled")
if __name__ == "__main__":
root = tk.Tk()
...//code here remains the same
Now, the application is coming up nicely, and we can run it from the terminal with python3 PomodoroTimer.py
.
The application launches and the timer starts. However, a Minimum Viable Product (MVP) should have features that go beyond basic functionality. It should include features in the initial phase that make users want to use it more.
So, I focused on two unique features to set it apart from other Pomodoro timers available in the Ubuntu snap store:
- An alarm sound that the user can hear, allowing them to reset the timer.
- The ability to launch the application with a double click on Ubuntu.
To implement these features, I made the following changes:
Adding Alarm Sound
I used the pygame
library to add the alarm sound feature:
import tkinter as tk
import pygame
class PomodoroTimer:
def __init__(self, master):
...//code here remains the same
pygame.mixer.init()
def countdown(self):
if self.seconds_left > 0 and self.is_running:
...//code here remains the same
self.master.after(1000, self.countdown) # Call this method again after 1000 ms (1 second)
elif self.is_running:
self.play_alarm()
...//code here remains the same
def stop_timer(self):
if self.is_running or self.seconds_left != 25 * 60:
...//code here remains the same
self.pause_button.config(state="disabled")
self.stop_button.config(state="disabled")
def play_alarm(self):
pygame.mixer.music.load("alarm_sound.wav") # Replace "alarm_sound.wav" with the path to your sound file
pygame.mixer.music.play()
if __name__ == "__main__":
root = tk.Tk()
app = PomodoroTimer(root)
root.mainloop()
Making the Application Executable with Double Click on Ubuntu
To make the Python script executable with a double click on Ubuntu, I followed these steps:
- Add a shebang line to the script. Open your Python script (PomodoroTimer.py) in a text editor and add the following line to the very top of the file:
#!/usr/bin/env python3
This line tells the operating system to use Python 3 to run the script.
Save and close the file.
- Make the script executable. Open a terminal window and navigate to the directory where the script is located. Then, run the following command:
chmod +x PomodoroTimer.py
This command grants the script executable permissions.
Associate the script with the Python interpreter.
To make sure your script opens with Python when double-clicked, you need to associate .py files with the Python interpreter. To do this, follow these steps:
a. Right-click on the PomodroTimer.py file and select "Properties" from the context menu.
b. In the "Properties" window, navigate to the "Open With" tab.
c. Find the "Python 3" interpreter in the list of applications. If you don't see it, click "Show other applications" and find it in the extended list.
d. Select "Python 3" and click the "Set as default" button.
Double click the script: Now you should be able to double-click the PomodoroTimer.py file to run the script.(Optional) Create a desktop shortcut.
Right-click on your desktop and select "Create a new launcher here" or "Create Launcher" (the wording may differ depending on your Ubuntu version).
In the "Create Launcher" window, fill in the details:
a. Type: Select "Application" from the dropdown menu.
b. Name: Enter a name for the shortcut, such as "Pomodoro Timer".
c. Command: Click the "Browse" button and navigate to the location of your PomodoroTimer.py file. Select the file and click "Open".
d. (Optional) Icon: Click the icon placeholder to choose an icon for the shortcut.
Click "OK" or "Create" to create the desktop shortcut.
With these enhancements, it's now time to work on creating a distributable version of the pilot application.
To convert the Python script into a Debian package (.deb file), I followed these steps:
- Install required tools. Open a terminal and run the following commands to install the necessary tools:
sudo apt update
sudo apt install dh-python devscripts debhelper
- Create a directory structure for the package. Replace your_package_name with a name for your package, and run the following commands:
mkdir -p your_package_name/usr/src/your_package_name
mkdir -p your_package_name/usr/bin
mkdir -p your_package_name/debian
Then, move your Python script (PomodoroTimer.py) to the your_package_name/usr/src/your_package_name directory.
- Create a script to run the application. In the your_package_name/usr/bin directory, create a new file called your_package_name (without any file extension). In this file, add the following content:
#!/bin/sh
/usr/bin/python3 /usr/src/your_package_name/PomodoroTimer.py
Save the file and make it executable by running:
chmod +x your_package_name/usr/bin/your_package_name
- Create a
debian/control
file. In the your_package_name/debian directory, create a new file called control. Add the following content to the file, replacing the placeholder text with your package details:
Source: your_package_name
Section: utils
Priority: optional
Maintainer: Your Name <your.email@example.com>
Build-Depends: debhelper (>=9), dh-python, python3
Standards-Version: 3.9.8
Package: your_package_name
Architecture: all
Pre-Depends: dpkg (>= 1.16.1), python3
Depends: ${shlibs:Depends}, ${misc:Depends}, ${python3:Depends}
Description: Short description of your package
Long description of your package.
- Create a
debian/rules
file. In the your_package_name/debian directory, create a new file called rules. Add the following content to the file:
#!/usr/bin/make -f
%:
dh $@ --with python3 --buildsystem=pybuild --system=setuptools
Save the file and make it executable by running:
chmod +x your_package_name/debian/rules
- Create a
debian/changelog
file. Add the following content to the file, replacing the placeholder text with your package details:
your_package_name (1.0-1) unstable; urgency=low
* Initial release.
-- Your Name <your.email@example.com> <current_date>
Replace with the current date in the format Mon, DD MMM YYYY HH:MM:SS +ZZZZ.
- Create
setup.py
file. Create a setup.py file in the root directory of your project with the following content:
from setuptools import setup, find_packages
setup(
name="pomodorotimer",
version="1.0",
packages=find_packages(),
entry_points={
'console_scripts': [
'pomodorotimer=pomodorotimer:main',
],
},
)
Replace pomodorotimer:main with the appropriate module and function name for your application entry point.
- Create a
debian/compat
file. Creating create a new file called compat in the debian directory with the following content:
10
This sets the compatibility level to 10, which should work with the tools you are using.
- Build the Debian package. Navigate to the root of your your_package_name directory in the terminal and run the following command:
dpkg-buildpackage -us -uc
If the build is successful, a .deb file will be generated in the parent directory of your your_package_name folder.
Now, I have a .deb file that I can distribute and install on Debian-based systems using the dpkg -i your_package_name.deb
command.
Top comments (0)