Click to change datasets.
Previous: Part 1.
| { | |
| "auto_indent": true, | |
| "caret_style": "phase", | |
| "color_scheme": "Packages/Color Scheme - Default/LAZY.tmTheme", | |
| "drag_text": false, | |
| "find_selected_text": true, | |
| "font_face": "Inconsolata", | |
| "font_size": 13, | |
| "highlight_line": true, | |
| "highlight_modified_tabs": true, |
| /* | |
| Triangle with Shadow | |
| */ | |
| .triangle-with-shadow { | |
| width: 100px; | |
| height: 100px; | |
| position: relative; | |
| overflow: hidden; | |
| box-shadow: 0 16px 10px -17px rgba(0,0,0,0.5); |
| /* | |
| As of version 1.1.2, Propane will load and execute the contents of | |
| ~Library/Application Support/Propane/unsupported/caveatPatchor.js | |
| immediately following the execution of its own enhancer.js file. | |
| You can use this mechanism to add your own customizations to Campfire | |
| in Propane. | |
| Below you'll find two customization examples. |
Click to change datasets.
Previous: Part 1.
| <?php | |
| // Use in the "Post-Receive URLs" section of your GitHub repo. | |
| if ( $_POST['payload'] ) { | |
| shell_exec( 'cd /srv/www/git-repo/ && git reset --hard HEAD && git pull' ); | |
| } | |
| ?>hi |