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
| #!/usr/bin/env bash | |
| # ================================================================== | |
| # LUFS Meter | |
| # Analyzes audio files and extracts loudness metrics based on the | |
| # ITU-R BS.1770-4 (EBU R128) standard. | |
| # | |
| # AUTHOR: | |
| # [email protected] | |
| # ================================================================== |
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 | |
| # ============================================================================== | |
| # Script: wifi-manager-setup.sh | |
| # Description: Installer and uninstaller for the Wi-Fi management daemon. | |
| # Author: Gustavo Moraes <[email protected]> | |
| # ============================================================================== | |
| # --- Variables ---------------------------------------------------------------- | |
| DAEMON_SCRIPT="wifi-manager-daemon.sh" |
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
| #!/usr/bin/env bash | |
| # | |
| # tplink-archer-rtw88-driver-install.sh - Setup script for TP-Link | |
| # Archer T2U Nano (AC600 model and similar, RTL8811AU chipset) driver for | |
| # Debian-based systems (Linux kernel v6.14 or older). | |
| # | |
| # This script is NOT needed in Linux systems with kernel v6.14 or newer. | |
| # USB Wi-Fi Adapters with RTL88* chipsets are PnP in these systems. | |
| # |
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
| #Requires AutoHotkey v2.0 | |
| #SingleInstance Force | |
| ; --- Keyboard shortcut to toggle panic mode --- | |
| ^#b::TogglePanic() | |
| ; Array to store the black windows for each monitor | |
| global panicWindows := [] | |
| ; Variable to track the panic mode state |
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
| #!/usr/bin/env bash | |
| set -euo pipefail | |
| TARBALL_URL="https://github.com/yt-dlp/FFmpeg-Builds/releases/download/latest/ffmpeg-master-latest-linux64-gpl.tar.xz" | |
| RELEASE_URL="https://github.com/yt-dlp/FFmpeg-Builds/releases/tag/latest" | |
| TEMP_DIR="$(mktemp -d)" | |
| TARBALL_NAME="ffmpeg.tar.xz" | |
| PACKAGE_BASE="yt-dlp-ffmpeg" | |
| ARCH="amd64" | |
| MAINTAINER="Gustavo Moraes <[email protected]>" |
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
| // ==UserScript== | |
| // @name Redmine Custom Font | |
| // @namespace https://github.com/gustavomdsantos | |
| // @version 1.0 | |
| // @description Changes Redmine interface font to "Lato". Useful when "Helvetica" font (not suitable for screens) is installed on PC. | |
| // @author Gustavo Moraes ([email protected]) | |
| // @match https://sistemas.agricultura.gov.br/redmine/* | |
| // @icon https://www.redmine.org/favicon.ico | |
| // @grant none | |
| // @run-at document-start |
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 | |
| #=========================================== | |
| # LUFS to Volume Relative (VR) Converter | |
| # Simple implementation based on formula: | |
| # VR = 9.09 * LUFS + 154.54 | |
| #=========================================== | |
| script_name="${SCRIPT_ALIAS:-$(basename "$0")}" |
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
| function set-title() { | |
| if [[ -z "$ORIG" ]]; then | |
| ORIG=$PS1 | |
| fi | |
| TITLE="\[\e]2;$*\a\]" | |
| PS1=${ORIG}${TITLE} | |
| } | |
| set-title "Terminal - $PWD" |
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
| /* | |
| Workarounds for a better user experience in Windows. | |
| Ruindows = Ruim + Windows | |
| */ | |
| #SingleInstance Force | |
| ;================= VARIABLES =================== | |
| ScriptName := "Ruindows Workarounds" |
NewerOlder