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: IKEA STYRBAR Dimmer Remote | |
| description: | |
| "Control lights with an IKEA STYRBAR.\n\n Blueprint\ | |
| \ Version: 1" | |
| domain: automation | |
| input: | |
| remote: | |
| name: IKEA STYRBAR | |
| description: Pick an IKEA STYRBAR remote |
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: IKEA STYRBAR 4 Toggles | |
| description: | |
| "Control lights with an IKEA STYRBAR. This blueprint turns the STYRBAR into 4 toggle buttons\n\n Blueprint\ | |
| \ Version: 1" | |
| domain: automation | |
| input: | |
| remote: | |
| name: IKEA STYRBAR | |
| description: Pick an IKEA STYRBAR remote |
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
| import os | |
| import tkinter as tk | |
| from tkinter import filedialog, messagebox | |
| import threading | |
| def rename_directories(search_path): | |
| work = [] | |
| for root, dirs, files in os.walk(search_path): | |
| for directory in dirs: | |
| old_name = directory + os.sep |
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
| # Edit this configuration file to define what should be installed on | |
| # your system. Help is available in the configuration.nix(5) man page | |
| # and in the NixOS manual (accessible by running ‘nixos-help’). | |
| { config, pkgs, ... }: | |
| { | |
| imports = | |
| [ # Include the results of the hardware scan. | |
| ./hardware-configuration.nix |
OlderNewer