Easily Adjust Date & Time in Standalone Window Managers
Python-based GUI
UPDATE (06/18/2024): re-written in tk
I wanted to add more features to the GUI to make it more seamless for everyday usage. Unfortunately, I am better at the tk
toolkit so I decided to re-write and expand from there. It definitely looks a lot less polished 😅 and would require more dependency pulls (because I am sure that not everyone has tk
installed), but it is definitely more functionally polished and less “jank”.
Dependencies:
To use dateTimeSetter
, you will need to install the following dependencies. Here are some instructions on how to install them on various Linux distributions:
Ubuntu / Debian
sudo apt update
sudo apt install python3-tk python3-pip
pip3 install pytz requests
Fedora
sudo dnf install python3-tkinter python3-pip
pip3 install pytz requests
Arch Linux
sudo pacman -S tk python-pip python-pytz python-requests
Links
- Source Code (GitHub)
- Download as
.py
- Download as
cythonized
binary - Download old version as
.py
- Source Code for old GTK version (found in my dotfiles repo)
POSIX Command-line Interface (just called dateTime
)
Links
- Source Code (found in my dotfiles repo)
- Download as
.sh
(this is kinda jank tbh)