sudo add-apt-repository ppa:gnome-terminator
sudo apt-get update
sudo apt-get install terminatorTerminator should be setup as default now. Restart your terminal (shortcut: "Ctrl+Alt+T").
| // This code is based on https://en.wikipedia.org/wiki/HSL_and_HSV | |
| // Free to use for any purpose. No attribution needed. | |
| function rgbToHsl(r, g, b) { | |
| r /= 255; g /= 255; b /= 255; | |
| let max = Math.max(r, g, b); | |
| let min = Math.min(r, g, b); | |
| let d = max - min; | |
| let h; | |
| if (d === 0) h = 0; |
| #!/bin/bash | |
| # | |
| # Modifed to work with bedrock. Note the hardcoded theme (search for my-theme-name), which could probably be changed to use | |
| # a command line argument. | |
| # Usage: | |
| # ./wpe-deploy.sh wpe-remote-name bedrock-folder | |
| # | |
| # Place this file at the same level as your trellis and bedrock-folder | |
| # | |
| # Version: 2.1 |
| #!/bin/bash | |
| # | |
| # rotate_desktop.sh | |
| # | |
| # Rotates modern Linux desktop screen and input devices to match. Handy for | |
| # convertible notebooks. Call this script from panel launchers, keyboard | |
| # shortcuts, or touch gesture bindings (xSwipe, touchegg, etc.). | |
| # | |
| # Using transformation matrix bits taken from: | |
| # https://wiki.ubuntu.com/X/InputCoordinateTransformation |
| /* MIXINs */ | |
| @mixin transition( $val : ease 0.5s ) { | |
| -webkit-transition: $val; | |
| -moz-transition:$val; | |
| -o-transition:$val; | |
| -ms-transition:$val; | |
| transition:$val; | |
| } | |
| @mixin text-shadow( $top: 3px, $left: 3px, $blur: 3px , $colour: #333 ) { |
| <!--[if mso]> | |
| <center> | |
| <table><tr><td width="580"> | |
| <![endif]--> | |
| <div style="max-width:580px; margin:0 auto;"> | |
| <p>This text will be centered and constrained to 580 pixels even on Outlook which does not support max-width CSS</p> | |
| </div> | |
| <!--[if mso]> |
| this.Element && function(ElementPrototype) { | |
| ElementPrototype.matchesSelector = ElementPrototype.matchesSelector || | |
| ElementPrototype.mozMatchesSelector || | |
| ElementPrototype.msMatchesSelector || | |
| ElementPrototype.oMatchesSelector || | |
| ElementPrototype.webkitMatchesSelector || | |
| function (selector) { | |
| var node = this, nodes = (node.parentNode || node.document).querySelectorAll(selector), i = -1; | |
| while (nodes[++i] && nodes[i] != node); |