Playlist for my favorite Quran tracks.
- https://youtu.be/vaXUaw_rXbo
- https://youtu.be/nPTJdPGX4KY
- https://youtu.be/zFPrF4Hlx50
- https://youtu.be/r68cICgHrwM
- https://youtu.be/7lJnKt-09BI
# vim style tmux config | |
# use C-a, since it's on the home row and easier to hit than C-b | |
set-option -g prefix C-a | |
unbind-key C-a | |
bind-key C-a send-prefix | |
set -g base-index 1 | |
# Easy config reload | |
bind-key R source-file ~/.tmux.conf \; display-message "tmux.conf reloaded." |
#!/usr/bin/env python3 | |
import subprocess | |
import json | |
import os | |
from pathlib import Path | |
import requests | |
from requests.compat import urljoin |