16 lines
546 B
Bash
Executable file
16 lines
546 B
Bash
Executable file
#!/bin/sh
|
|
#
|
|
# Power on every device that control light sources.
|
|
#
|
|
|
|
tellstickController --set bedroom_mythtv_leds on
|
|
tellstickController --set bedroom_window on
|
|
tellstickController --set kitchen_cabinets on
|
|
tellstickController --set livingroom_cabinets on
|
|
tellstickController --set livingroom_mythtv_leds on
|
|
tellstickController --set livingroom_uplight on
|
|
tellstickController --set livingroom_wall_north on
|
|
tellstickController --set livingroom_wall_east on
|
|
tellstickController --set Livingroom_window on
|
|
tellstickController --set study_window on
|
|
|