- Alert Contact Type: Web-Hook
- URL to Notify:
https://discordapp.com/api/webhooks/CHANGEME/CHANGEME?- Must end with
?
- Must end with
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
| #ID 3434:d028 Keychron Keychron Ultra-Link 8K | |
| #ID 3434:d048 Keychron Keychron M5 8K | |
| #ID 3434:0163 Keychron Keychron Q6 | |
| KERNEL=="hidraw*", ATTRS{idVendor}=="3434", ATTRS{idProduct}=="d028", MODE="0666", GROUP="input" | |
| KERNEL=="hidraw*", ATTRS{idVendor}=="3434", ATTRS{idProduct}=="d048", MODE="0666", GROUP="input" | |
| KERNEL=="hidraw*", ATTRS{idVendor}=="3434", ATTRS{idProduct}=="0163", MODE="0666", GROUP="input" |
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
| # PowerShell Script fuer Chocolatey Auto-Update | |
| param( | |
| [Parameter(Position = 0)] | |
| [string]$Action | |
| ) | |
| $ScriptPath = $MyInvocation.MyCommand.Path | |
| $TaskName = "ChocolateyAutoUpdate" |
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 | |
| # Pfad zu Homebrew (Apple Silicon / Intel) | |
| export PATH="/opt/homebrew/bin:/usr/bin:/bin:/usr/sbin:/sbin" | |
| SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" | |
| SCRIPT_PATH="${SCRIPT_DIR}/$(basename "${BASH_SOURCE[0]}")" | |
| PLIST_DIR="$HOME/Library/LaunchAgents" | |
| PLIST_NAME="com.user.brew-autoupdate.plist" | |
| PLIST_PATH="${PLIST_DIR}/${PLIST_NAME}" |
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 | |
| # === Configuration === | |
| GITHUB_USER="USER" | |
| REPO_NAME="REPO" | |
| BRANCH="main" | |
| LAST_COMMIT_FILE=".last_commit" | |
| # GitHub API URL for the branch | |
| API_URL="https://api.github.com/repos/${GITHUB_USER}/${REPO_NAME}/commits/${BRANCH}" |
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
| map $remote_addr $remote_addr_anon { | |
| ~(?P<ip>\d+\.\d+\.\d+)\. $ip.0; | |
| ~(?P<ip>[^:]+:[^:]+): $ip::; | |
| default 0.0.0.0; | |
| } | |
| log_format combined_ssl '$remote_addr_anon - $remote_user [$time_local] ' | |
| '$ssl_protocol/$ssl_cipher ' | |
| '"$request" $status $body_bytes_sent ' | |
| '"$http_referer" "$http_user_agent"'; |
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
| ### Keybase proof | |
| I hereby claim: | |
| * I am xopez on github. | |
| * I am xopez (https://keybase.io/xopez) on keybase. | |
| * I have a public key ASAuR4rT_2NUBAhZdrY9Ac8awbB7eT9K8Whg81V2klT1IQo | |
| To claim this, I am signing this object: |
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 | |
| command_exists() { | |
| command -v "$@" >/dev/null 2>&1 | |
| } | |
| TARGET_PATH="$PWD" | |
| OWNER=$(id -u) | |
| REQUIRED_PACKAGES="curl jq" |
