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
# Author: Leon Cowle <[email protected]> | |
# Version: 0.1 (9/21/2024) | |
# License: Free to use/copy/whatever :) | |
# Simple AppleScript script to call from Terminal. It opens a Finder window to the current working dir, | |
# and then selects all the files given as arguments to the AppleScript script. | |
# Suggestion: use an alias in your shell, e.g.: | |
# alias sel="osascript /path/to/this/finderselect.scpt" | |
# and then run it like this: | |
# $ sel image2015*.jpg |
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
# Simple script to reload a Google Search result in Safari, adding the "&udm=14" querystring arg, | |
# which results in a simpler, non-AI (etc) view of results. | |
# Save this script in your /Users/<username>/Library/Scripts/Applications/Safari folder | |
# (create those subfolders if needed), and then use FastScripts to assign the ⌘R shortcut to it | |
# Putting it in that folder "/Users/<username>/Library/Scripts/Applications/Safari" will mean FastScripts will only | |
# bind ⌘R to it when Safari is the front-most application. Other applications will retain their native ⌘R behavior. | |
# Author: Leon Cowle | |
# License: Feel free to use/change it. But be kind in attribution. :-) | |
tell application "Safari" |