One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
| /** | |
| * Bind querySelector to dollar sign ($) to easily reference DOM elements without jQuery | |
| * Source: https://twitter.com/MrAhmadAwais/status/1113094169025708033 | |
| */ | |
| // In case you're also loading jQuery | |
| jQuery.noConflict(); | |
| // Example - Change an element's background color | |
| // Shorthand for: document.querySelector( '.selector' ).style.background = '#BADA55'; |
| #! /bin/sh | |
| set -e | |
| # Save the $timeout and $timeout_style values set by /etc/grub.d/00_header | |
| # before /etc/grub.d/30_os-prober messes them up. | |
| cat << EOF | |
| set timeout_bak=\${timeout} | |
| set timeout_style_bak=\${timeout_style} | |
| EOF |