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
| version: "3.9" | |
| services: | |
| frigate: | |
| environment: | |
| - FRIGATE_RTSP_PASSWORD=password | |
| container_name: frigate | |
| privileged: true # this may not be necessary for all setups | |
| restart: unless-stopped | |
| # image: blakeblackshear/frigate:stable | |
| image: ghcr.io/blakeblackshear/frigate:stable |
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 Archive number for WhatsApp Web | |
| // @namespace http://tampermonkey.net/ | |
| // @version 2025-03-05 | |
| // @description Adds the number of unread archive messages to the tab title | |
| // @author You | |
| // @match https://web.whatsapp.com/ | |
| // @icon https://www.google.com/s2/favicons?sz=64&domain=whatsapp.com | |
| // @grant none | |
| // ==/UserScript== |
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 | |
| # Check if a version argument is provided | |
| if [[ -z "$1" ]]; then | |
| echo "Usage: $0 <portainer_agent_version>" | |
| exit 1 | |
| fi | |
| VERSION="$1" | |
| TEMP_FILE="/tmp/portainer_edge_credentials" |