Generated: Tue, 09 Aug 2016 23:10:13 GMT User Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36
Extensions: 15
| <?xml version="1.0"?> | |
| <profile name="Monoprice Maker Select" version="2016-06-08 08:00:00" app="S3D-Software 3.1.0"> | |
| <baseProfile></baseProfile> | |
| <printMaterial>PLA</printMaterial> | |
| <printQuality>Medium</printQuality> | |
| <printExtruders></printExtruders> | |
| <extruder name="Primary Extruder"> | |
| <toolheadNumber>0</toolheadNumber> | |
| <diameter>0.4</diameter> | |
| <autoWidth>0</autoWidth> |
| #!/bin/bash | |
| #Thanks to https://superuser.com/a/1171028 | |
| echo "This script increases the max files a proccess can have open in OSX Sierra." | |
| echo "It should improve IDE performance in large projects with multiple watchers." | |
| set -e | |
| plistcontent=$(cat <<EOF | |
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" | |
| "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> |
| public class MyApp extends MultiDexApplication { | |
| private static MyApp sInstance = null; | |
| @Override | |
| public void onCreate() { | |
| super.onCreate(); | |
| sInstance = this; | |
| } |
| -- hattip https://github.com/lodestone/hyper-hacks | |
| -- hattip https://gist.github.com/ttscoff/cce98a711b5476166792d5e6f1ac5907 | |
| -- hattip https://gist.github.com/prenagha/1c28f71cb4d52b3133a4bff1b3849c3e | |
| local hyper = {'cmd','alt','shift','ctrl'} | |
| -- A global variable for the Hyper Mode | |
| k = hs.hotkey.modal.new({}, "F17") |
Generated: Tue, 09 Aug 2016 23:10:13 GMT User Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36
Extensions: 15
| #!/bin/bash | |
| # MacOS/OSX Setup Scripts | |
| # By Tyler Getsay's Preference | |
| # Last tested on El Captain | |
| # | |
| # Disable window animaions | |
| defaults write NSGlobalDomain NSAutomaticWindowAnimationsEnabled -bool false | |
| # Disable QuickLook animations | |
| defaults write -g QLPanelAnimationDuration -float 0 | |
| # Disable window resize animations |
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>ExitTimeOut</key> | |
| <integer>5</integer> | |
| <key>HopefullyExitsFirst</key> | |
| <true/> | |
| <key>KeepAlive</key> | |
| <false/> |