Most codecs contains pieces of software which are not free or cannot be included in Fedora repositories so adding rpm-fusion’s repository is required
- Fedora (22 and later):
This guide will cover the basics on how to integrate emacs with protonmail-bridge using
| #!/usr/bin/env python3 | |
| __license__ = 'MIT' | |
| import argparse | |
| import json | |
| import hashlib | |
| import os | |
| import shutil | |
| import tempfile |
| #!/usr/bin/env python3 | |
| import os | |
| import argparse | |
| import shutil | |
| from xdg.DesktopEntry import DesktopEntry | |
| from xdg.BaseDirectory import xdg_data_home | |
| import gi | |
| gi.require_version('Gtk', '3.0') |
| #!/usr/bin/env python3 | |
| """ | |
| Manage your pi-hole with asyncio and GPIOs. | |
| """ | |
| import RPi.GPIO as GPIO # Import Raspberry Pi GPIO library | |
| import pihole as ph | |
| import atexit | |
| import sys | |
| import asyncio |