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 | |
| # afterdark.sh: Old-school screensaver functionality for GNOME/Wayland desktops | |
| # This script will run arbitrary command after specified time period, if there is no inhibiting applications detected | |
| # Started process will be terminated at the first sight of user activity | |
| # You supposed to launch something like full-screen video or cmatrix :) | |
| start_after=15 # minutes | |
| cmd="mpv /home/test/Videos/after_dark.mp4 --fs --loop --no-osc" | |
| lock_screen=false | 
  
    
      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 | |
| # afterdark.sh: Old-school screensaver functionality for GNOME/Wayland desktops | |
| # This script will run arbitrary command after specified time period, if there is no inhibiting applications detected | |
| # Started process will be terminated at the first sight of user activity | |
| # You supposed to launch something like full-screen video or cmatrix :) | |
| start_after=15 # minutes | |
| cmd="mpv /home/test/Videos/after_dark.mp4 --fs --loop --no-osc" | |
| lock_screen=false | 
  
    
      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
    
  
  
    
  | # Spectrum | |
| bbcamerica: spectrumtv://watch.spectrum.net/livetv/17?linkorigin=sirilivetunein&idtype=network | |
| disney: spectrumtv://watch.spectrum.net/livetv/85?linkorigin=sirilivetunein&idtype=network | |
| tbs: spectrumtv://watch.spectrum.net/livetv/340?linkorigin=sirilivetunein&idtype=network | |
| Channels (This is based on network id) | |
| 1401: CTN (WCLF) HD | |
| 729: PBS (WEDU) HD | 
  
    
      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
    
  
  
    
  | blueprint: | |
| name: Nagging Alerting Notification Automation | |
| description: > | |
| Trigger an alert based on the state of a given sensor. | |
| The Alert is send to a mobile app device and repeats as long as the sensor is in the given state. | |
| An additonal action can be specified. This might be useful to tts the message. | |
| domain: automation | |
| source_url: https://gist.github.com/rob121/06697c3f5bc7a12baa640d99c003f786 | |
| input: | |
| sensor_entity: | 
  
    
      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
    
  
  
    
  | // Package main is a sample macOS-app-bundling program to demonstrate how to | |
| // automate the process described in this tutorial: | |
| // | |
| // https://medium.com/@mattholt/packaging-a-go-application-for-macos-f7084b00f6b5 | |
| // | |
| // Bundling the .app is the first thing it does, and creating the DMG is the | |
| // second. Making the DMG is optional, and is only done if you provide | |
| // the template DMG file, which you have to create beforehand. | |
| // | |
| // Example use: |