-
-
Save timuruski/7234209 to your computer and use it in GitHub Desktop.
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
#! /bin/bash | |
# Summons a Quicklook window and then returns focus to the terminal. | |
# | |
# TODO: Support other terminal emulators | |
# | |
# Usage: | |
# $ ql ~/example.jpg | |
set -e | |
function focus() { | |
osascript -e 'tell app "iTerm" to activate' | |
} | |
function quicklook() { | |
qlmanage -p $1 > /dev/null 2>&1 | |
} | |
quicklook $1; focus |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment