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
{ | |
"title": "Map number keys to function keys [su-thomas fork]", | |
"rules": [ | |
{ | |
"description": "Map ctrl + fn + number keys to their corresponding function keys", | |
"manipulators": [ | |
{ | |
"type": "basic", | |
"from": { | |
"key_code": "1", |
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 os | |
import requests | |
import ffpb | |
import subprocess | |
from pathlib import Path | |
""" | |
Change the following values to your own. | |
To get your token, you'll need to log into panopto on a browser and view the .ASPXAUTH cookie value | |
""" |
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 os | |
import requests | |
import youtube_dl | |
""" | |
Change the following values to your own. | |
To get your token, you'll need to log into panopto on a browser and view the .ASPXAUTH cookie value. | |
""" | |
PANOPTO_BASE = "https://westernsydney.ap.panopto.com/" | |
TOKEN = "" |