These is the rough technique that I used to create a functional, multi-puspose reading ruler out of iTerm2. A video of the results can be found on YouTube.
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
- Use homebrew to install GNU
sleep
, becuase this supports theinfinity
aergument, which BSDsleep
does not. We will ue this to keep the ruler open idefintely.
brew install coreutils
- Launch
iTerm2
- Open the menu
iTerm2 - Preferences
- Select the
Profiles
Tab - Click
+
to create a new profile namedReading Ruler
- Configure the sections circled in red. You can configure other things, but those are the most important things that I could remeber.
- Give it a name, shortcut key, and most importantly set it to run
gsleep infinity
which will keep the window open with no output forever.
- These are the primary windows settings. I'd start with this, but you can tweak however you want. This impacts how transparent the window is, etc.
- Note: I decided to disable the
double shift click
hotkey that I mentioned in the video as I found that it triggered accidently too often, so I just used a standard hotkeyControl-Command-r
instead.
- Under
Preferences - Appearance - Windows
You can checkHide scrollbars
if you want, just note that it is global and impacts all iTerm2 windows.
-
If you would like to be able to easily drag the borderless reading ruler window around the screen, versus just resizing it, and you are running macOS Yosemite or later, then I recommend that you launch the
terminal
application and run this command:- Note: This is a global setting and will impact all windows. That shouldn't be a big issue, but just so that you are aware.
- For more details see: https://www.mackungfu.org/UsabilityhackClickdraganywhereinmacOSwindowstomovethem
-
defaults write -g NSWindowShouldDragOnGesture -bool true
Once you have done this, then you will need to logout and back in or reboot for the setting to take effect.
Once you have done this then you can press control+command
and left-click
inside most windows to drag them around the screen.
To stop this behavior, you can delete this defaults setting from Terminal
:
defaults delete -g NSWindowShouldDragOnGesture
Then log out and back in or reboot for the change to take effect.
- Feel free to post comments, if something is confusing, and I'll try to provide some clarification.
Is it working in full screen mode?