This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Section "Device" | |
Identifier "Default Device" | |
Driver "nvidia" | |
VendorName "NVIDIA Corporation" | |
Option "NoLogo" "True" | |
Option "RegistryDwords" "EnableBrightnessControl=1" | |
EndSection |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import requests | |
from urllib.parse import urlencode | |
import logging | |
ORGANIZATION = "elementary" | |
logging.basicConfig(format='%(asctime)-15s %(message)s') | |
logger = logging.getLogger('github') | |
logger.setLevel(logging.INFO) |