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
| set smoothscroll | |
| let scrollstep = 80 | |
| set smartcase | |
| set noautofocus | |
| set completeonopen | |
| site '*://*reddit.com*' { | |
| unmap . | |
| unmap j | |
| unmap k | |
| unmap / |
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
| set smoothscroll | |
| let scrollstep = 80 | |
| set smartcase | |
| set noautofocus | |
| set completeonopen | |
| site '*://*reddit.com*' { | |
| unmap . | |
| unmap j | |
| unmap k | |
| unmap / |
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
| https://github.com/youvegotmoxie/skriptan/blob/master/freebsd/minecraft/minecraft.sh |
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
| # Control iTunes from command line | |
| # Play iTunes | |
| function iplay() { | |
| osascript -e 'tell application "iTunes" to play' | |
| } | |
| # Pause iTunes | |
| function ipause() { | |
| osascript -e 'tell application "iTunes" to pause' |