This file contains 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
$ steam | |
steam.sh[9073]: Running Steam on arch rolling 64-bit | |
steam.sh[9073]: STEAM_RUNTIME is enabled automatically | |
setup.sh[9148]: Steam runtime environment up-to-date! | |
steam.sh[9073]: Steam client's requirements are satisfied | |
06/27 08:32:40 Init: Installing breakpad exception handler for appid(steam)/version(1687563636)/tid(9208) | |
(process:9208): GLib-GObject-CRITICAL **: 08:32:41.300: g_object_ref: assertion 'G_IS_OBJECT (object)' failed | |
(process:9208): GLib-GObject-CRITICAL **: 08:32:41.300: g_object_unref: assertion 'G_IS_OBJECT (object)' failed |
This file contains 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: TTS on motion with persons at home | |
description: Sends TTS message to a media_player when motion is detected with the person | |
at home | |
domain: automation | |
input: | |
door_sensor: | |
name: Motion sensor | |
selector: | |
entity: |
This file contains 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 | |
STEAMAPPS_PATH=${1-~/.steam/steam/steamapps} | |
FALLGUYS_PATH=$STEAMAPPS_PATH/common/Fall\ Guys | |
if [ ! -d "$FALLGUYS_PATH" ]; then | |
echo Unable to find Fall Guys Path. | |
exit | |
fi | |
#Create symlink | |
ln -s "$FALLGUYS_PATH/EasyAntiCheat/easyanticheat_x64.so" "$FALLGUYS_PATH/FallGuys_client_game_Data/Plugins/x86_64/easyanticheat_x64.so" |
This file contains 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: TTS on door opening with persons at home | |
description: Sends TTS message to a media_player when door is oppened with the person | |
at home | |
domain: automation | |
input: | |
door_sensor: | |
name: Door sensor | |
selector: | |
entity: |
This file contains 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: TTS on door opening with persons at home | |
description: Sends notification on low battery for DW2-Wifi | |
domain: automation | |
input: | |
door_sensors: | |
name: Door sensors | |
selector: | |
entity: | |
domain: binary_sensor |
This file contains 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: Sonoff DW2-Wifi low battery notification | |
description: Sends notification on low battery for DW2-Wifi | |
domain: automation | |
input: | |
door_sensor: | |
name: Door sensor | |
selector: | |
entity: | |
domain: binary_sensor |
This file contains 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
/* | |
Monitor ticket availability at Fifa.com Ticketing System site | |
Run this code at https://fwctickets.fifa.com/ticketingsystem.aspx?l=en#Tck2 | |
(use the console available in any browser developer inspector) | |
- configure the timeout between refreshes and the matches you want to monitor | |
- when any available ticket is found a beep sound is played and the refresh stops | |
*/ | |
function checkTicket() { |