- Create a new profile, e.g. Man Page Viewer
- Set the command to
/bin/zsh -c "echo '$$HOST$$''$$PATH$$' | sed 's/\\// /g' | xargs man"
- Select x-man-page from the "Schemes handled" drop down
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
to closeIncorrectEjections() | |
set totalClosed to 0 | |
tell application "System Events" | |
tell process "NotificationCenter" | |
set closedWindows to 1 -- force first repeat loop | |
repeat until closedWindows = 0 | |
set closedWindows to 0 | |
set numwins to (count windows) |
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
// | |
// Injectable.swift | |
// | |
// Created by André Pinto on 06/05/17. | |
// Copyright © 2017 André Pinto. All rights reserved. | |
// | |
protocol Injectable { | |
/// Type which defines the dependencies to be injected |