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 json | |
import socket # Just so we can properly handle hostname exceptions | |
import obspython as obs | |
import paho.mqtt.client as mqtt | |
import ssl | |
import pathlib | |
import time | |
import enum | |
import uuid | |
from multiprocessing import Lock |
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
#!/bin/bash | |
RDPHOST=$1 | |
RDPUSER=$2 | |
RDPPASS=$3 | |
xfreerdp /v:$RDPHOST /u:$RDPUSER /p:$RDPPASS /f /bpp:16 /rfx /gfx:AVC444 +glyph-cache +bitmap-cache +offscreen-cache +heartbeat +fonts +compression -wallpaper -themes -window-drag -menu-anims /audio-mode:0 /network:lan /auto-reconnect |
OlderNewer