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
# This Home Assistant layout is designed for tracking various waste collection schedules. | |
# | |
# Before implementing this layout, ensure that the following integrations/components | |
# are installed via the Home Assistant Community Store (HACS) to ensure full functionality: | |
# - Waste Collection Schedule: For handling different waste collection types. | |
# - template-entity-row: Enables custom row templates in entity cards. | |
# - auto-entities: Dynamically displays entities based on defined rules. | |
# - Easy Time: Used for formatting time and date information efficiently. | |
type: custom:auto-entities |
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/sh | |
echo "Please login to your Apple Account through the Mac App Store" | |
echo "When logged in sucessfully press [ENTER} to continue" | |
read | |
############################################## | |
## Install homebrew and Xcode | |
############################################## |
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 io.waller.light | |
import groovy.json.JsonOutput | |
import groovy.json.JsonSlurper | |
import groovy.util.logging.Slf4j | |
@Slf4j | |
class HueClient { | |
String host | |
String token |
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
#### Contents of the preconfiguration file (for stretch) | |
### Localization | |
# Preseeding only locale sets language, country and locale. | |
d-i debian-installer/locale string en_US | |
# The values can also be preseeded individually for greater flexibility. | |
d-i debian-installer/language string en | |
d-i debian-installer/country string DE | |
d-i debian-installer/locale string en_GB.UTF-8 | |
# Optionally specify additional locales to be generated. |
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/sh | |
# dhclient change hostname script for Ubuntu | |
# /etc/dhcp/dhclient-exit-hooks.d/sethostname | |
# logs in /var/log/upstart/network-interface-eth0.log | |
# for debugging: | |
echo "sethostname BEGIN" | |
export | |
set -x |