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
| #!/bin/bash | |
| # Discussion, issues and change requests at: | |
| # https://github.com/nodesource/distributions | |
| # | |
| # Script to install the NodeSource Node.js 0.12 repo onto a | |
| # Debian or Ubuntu system. | |
| # | |
| # Run as root or insert `sudo` before `bash`: | |
| # |
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
| # ~/.bashrc: executed by bash(1) for non-login shells. | |
| # see /usr/share/doc/bash/examples/startup-files (in the package bash-doc) | |
| # for examples | |
| # If not running interactively, don't do anything | |
| case $- in | |
| *i*) ;; | |
| *) return;; | |
| esac |
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
| /* Adjust as needed */ | |
| * { box-sizing: border-box; margin: 0; padding: 0; } | |
| body { background: #eee; } | |
| /* Container */ | |
| #window-chrome { | |
| position: absolute; | |
| top: 10%; bottom: 0; left: 0; | |
| width: 30%; min-width: 200px; | |
| background-color: #fafafa; |