This file contains 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
if application "VLC" is running then | |
tell application "VLC" | |
step backward | |
end tell | |
end if | |
property step : 10 | |
if application "QuickTime Player" is running then | |
tell application "QuickTime Player" | |
set playerPosition to (current time of front document) - step | |
set movieDuration to duration of front document |
This file contains 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
brew list -1 | while read line; do brew unlink $line; brew link $line; done | |
for x in sqlite openssl readline; do brew unlink $x; brew link --force $x; done |