A versatile Bash script designed to manage and display Islamic prayer times. It retrieves prayer schedules based on the user's geographical coordinates and provides notifications for each prayer. The script supports multiple languages and integrates seamlessly with notification daemons like dunst and mako.
Inspired by Nofarah Tech's prayer times scripts, this version also includes added support for status bars like Waybar and integrated desktop notifications.
- Clone the repo
git clone https://github.com/0xzer0x/prayer-times.git
- Run the install script
cd prayer-times
./install.sh
jq
at
yad
mpv
curl
dunst
(x11)polybar
(x11)mako
(wayland)waybar
(wayland)- Nerd Font (recommended)
- Copy files to their corresponding location on your system
- Set the parameters for the script
lat
: latitudelong
: longitudemethod
: calculation methodprint_lang
: language to print prayer times schedule in (ar
/en
)notify
: notification daemon (mako
/dunst
)
- Activate systemd user unit
- Add statusbar module
- Add notification daemon rule
- Configure Yad dialog to show in floating mode
- Run one of the following commands to activate the service for your user
systemctl --user enable --now prayer-times.service # start on boot
systemctl --user enable --now prayer-times.timer # start on boot + every 8 hours
- Add the following to your polybar config file (
~/.config/polybar/config[.ini]
) then add the module - Modify colors according to your liking (replace #83CAFA)
[module/prayers]
type = custom/script
exec = $HOME/.local/bin/prayer-times status
interval = 60
label = %{A:$HOME/.local/bin/prayer-times yad:}%{F#83CAFA} %{F-} %output%%{A}
- Add the following custom module to your waybar config (
~/.config/waybar/config
)
"custom/prayers": {
"interval": 60,
"return-type": "json",
"exec": "$HOME/.local/bin/prayer-times waybar",
"on-click": "$HOME/.local/bin/prayer-times yad",
"format": " {}",
}
- You can style the module using the class of the next prayer (e.g.
Asr
)
- Add the following rule to your dunstrc file (
~/.config/dunst/dunstrc
)
[play_athan]
summary = "Prayer Times"
script = "$HOME/.local/bin/toggle-athan"
- Add the following criteria/rule to mako config (
~/.config/mako/config
)
[summary="Prayer Times"]
on-notify=exec $HOME/.local/bin/toggle-athan
on-button-left=exec $HOME/.local/bin/toggle-athan
- Window Title:
Prayers
- Configure your window manager to show the Yad window in floating mode and you're all set!
- Example window rule for Hyprland
windowrulev2 = float,class:(yad)
windowrulev2 = move cursor -50% 30,title:(Prayers)
- Nofarah Tech | نوفرة تك (video) (dotfiles)
- Aladhan API
- Polybar config
- Default dunstrc
- Mako man page
- Waybar Custom Module