Skip to content

Instantly share code, notes, and snippets.

@spkane
Last active February 22, 2025 00:53
Show Gist options
  • Save spkane/df304a3e653ef77421e04a2fa2f2f78f to your computer and use it in GitHub Desktop.
Save spkane/df304a3e653ef77421e04a2fa2f2f78f to your computer and use it in GitHub Desktop.
Create a Reading Ruler from iTerm2 on macOS

Create a Reading Ruler from iTerm2 on macOS

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.

  1. Install Iterm2
  2. Install Homberew
  • /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
  1. Use homebrew to install GNU sleep, becuase this supports the infinity aergument, which BSD sleep does not. We will ue this to keep the ruler open idefintely.
  • brew install coreutils
  1. Launch iTerm2
  2. Open the menu iTerm2 - Preferences
  3. Select the Profiles Tab
  4. Click + to create a new profile named Reading Ruler
  5. 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.
    • One Apple Silicon (arm64) based system, homebrew uses /opt instead of /usr/local, so you may need to adjust the command path to something like /opt/bin/gsleep. CleanShot 2022-03-05 at 10 45 44@2x

  • Set the color that you want for the window. CleanShot 2022-03-05 at 10 54 34@2x

  • This just makes the cursor harder to notice in the window CleanShot 2022-03-05 at 10 49 18@2x

  • 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. CleanShot 2022-03-05 at 10 49 58@2x

  • This probably isn't super important, but it can't hurt. CleanShot 2022-03-05 at 10 52 54@2x

  • Close without promoting and no status bar or timestamps. CleanShot 2022-03-05 at 10 53 20 2@2x

  • A dedicated window hotkey is super useful for the Reading Ruler, so let's create that. CleanShot 2022-03-05 at 10 57 22@2x

  • 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 hotkey Control-Command-r instead. CleanShot 2022-03-05 at 10 57 51@2x

  • We should disable any triggers, just in case. CleanShot 2022-03-05 at 10 59 07@2x

  • Under Preferences - Appearance - Windows You can check Hide scrollbars if you want, just note that it is global and impacts all iTerm2 windows. CleanShot 2022-03-05 at 11 19 40@2x

  • 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:

  • 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.
@PLSomebody
Copy link

Is it working in full screen mode?

@spkane
Copy link
Author

spkane commented Feb 22, 2025

Is it working in full screen mode?

I haven't used it a bunch recently, but I'd guess that you can have the application window maximized, but not in true full-screen mode. If it is actually in full-screen mode, then it likely won't work since the full-screen app will have complete ownership of the screen.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment