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: Sun ↔ Time Actions (Generic) | |
| description: Run any action based on a sun event and a fixed time. Choose which one turns ON and which turns OFF. | |
| domain: automation | |
| input: | |
| mode_selector: | |
| name: Logic Mode | |
| description: Choose which trigger runs ON and which runs OFF | |
| default: sun_on |
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
| <div id="player-bg-artwork"></div> | |
| <div id="player-bg-layer"></div> | |
| <div id="player-container"> | |
| <div id="player"> | |
| <div id="player-track"> | |
| <div id="album-name"></div> | |
| <div id="track-name"></div> | |
| <div id="track-time"> | |
| <div id="current-time"></div> | |
| <div id="track-length"></div> |
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 | |
| # | |
| # This script should do: | |
| # | |
| # 1) test if nfs folder is mounted and exit 0 if yes | |
| # 2) try to mount it and exit 0 if success | |
| # 3) try to wake the server if not possible to mount | |
| # 4) wait while its not woked (pinging) | |
| # 5) try againt 2-4 several times |