This file contains 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
<?xml version="1.0" encoding="UTF-16"?> | |
<Task version="1.2" xmlns="http://schemas.microsoft.com/windows/2004/02/mit/task"> | |
<RegistrationInfo> | |
<Date>2023-01-18T18:19:11.4118961</Date> | |
<Author>NULL234\null234</Author> | |
<URI>\SetDefaulDeviceOnConnection</URI> | |
<Description>Stop annoying windows! i want to decide what stadart playback device i use.</Description> | |
</RegistrationInfo> | |
<Triggers> | |
<EventTrigger> |
This file contains 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
#!/usr/bin/env bash | |
# Check Plex iHD driver. If exists, delete. Should fix buffering on HW Transcoding. | |
file="/volume1/@appstore/Plex Media Server/lib/dri/iHD_drv_video.so" | |
filebackup="/volume1/@appstore/Plex Media Server/lib/dri/iHD_drv_video.so.bak" | |
if [ -f "$file" ] ; then | |
echo "Stopping Plex"; echo; | |
synoservicectl --stop "pkgctl-Plex Media Server" ; | |
echo "Found iHD, deleting..."; echo; |