View Dependency.php
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
<?php | |
namespace Acme; | |
use Acme\SubDependency; | |
class Dependency | |
{ | |
protected $subDep; |
View generator
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title></title> | |
<style> | |
body { | |
text-align: center; | |
font-family: sans-serif; | |
} |
View app.sh
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/sh | |
# Get the original brightness | |
BRIGHTNESS=`/rest/brightness -l`; | |
# Dim the screen to it's lowest setting | |
`/rest/brightness 0` | |
# Stop for 5 minutes | |
sleep 300 |