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
| # ----------- Default (Multi-Monitor Casual + Streamlink) ----------- # | |
| hwdec=auto-safe | |
| vo=gpu-next | |
| gpu-api=vulkan | |
| profile=gpu-hq | |
| # Multi-monitor safe video sync (works reliably on 60Hz, 165Hz, 144Hz) | |
| video-sync=audio | |
| cache=yes | |
| demuxer-readahead-secs=20 |
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 | |
| # hagezi-enhanced-updater.sh - A script I use for my RPI5 (Spanish) | |
| HAGEZI_DIR="/var/technitium/www" | |
| TEMP_DIR="/tmp/hagezi-update" | |
| COMBINED_FILE="$HAGEZI_DIR/hagezi-professional.txt" | |
| mkdir -p $TEMP_DIR $HAGEZI_DIR | |
| echo "# HaGeZi Enhanced Professional List - $(date)" > $COMBINED_FILE |
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
| # OPENWRT Crontab LED Schedule | |
| # This crontab manages LED behavior on OpenWrt, turning them OFF at night and restoring defaults in the morning. | |
| # Turn off all LEDs at 11:30 PM | |
| 30 23 * * * /etc/init.d/led turnoff | |
| # Restore default LED settings at 7:00 AM | |
| 00 07 * * * /etc/init.d/led turnon |