The LampStealer app for Hue does not work with newer versions of the bridge, as the API has changed. This shell script works with fewer dependencies and achieves the same. Install jq and run the shell script after pushing the big button on the bridge.
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
module.exports = { | |
config: { | |
// default font size in pixels for all tabs | |
fontSize: 20, | |
// font family with optional fallbacks | |
fontFamily: 'Source Code Pro, Fira Code, Menlo, "DejaVu Sans Mono", Consolas, "Lucida Console", monospace', | |
// terminal cursor background color and opacity (hex, rgb, hsl, hsv, hwb or cmyk) | |
cursorColor: 'rgba(248,28,229,0.8)', |
I hereby claim:
- I am trieloff on github.
- I am trieloff (https://keybase.io/trieloff) on keybase.
- I have a public key whose fingerprint is BF26 4000 BFB4 E75F F3D1 99CD EAD4 D144 CAE7 CD54
To claim this, I am signing this object:
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
<%-- | |
Youtube Video component. | |
--%><% | |
%><%@include file="/libs/foundation/global.jsp"%><% | |
%><%@page session="false" import="com.day.cq.wcm.foundation.forms.FormsHelper" %><% | |
%><% |
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
<style> | |
a.tracklink:visited {color:black!important;display:none;} | |
a.tracklink:link {color:white!important;;display:none;} | |
</style> | |
<script> | |
function isVisited(url) { | |
var link_el = document.createElement('a'); | |
link_el.innerHTML = "-"; | |
link_el.className = "tracklink"; | |
link_el.href = url; |
NewerOlder