Skip to content

An Alfred workflow to fix that annoying column bug in Mavericks

License

Notifications You must be signed in to change notification settings

daveonkels/fixfinder

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 

Repository files navigation

FixFinder

FixFinder aims to resolve that most annoying bug in Mavericks which extends the file name column beyond the width of the Finder window. Viewing file attributes requires horizontal scrolling skills and a good bit of patience.

Missing Columns in Finder

Credit goes to Christian Varga who solved this with a bit of Applescript wizardry: http://christianvarga.com/fix-finder-name-column-width-bug-osx-mavericks/

My only contribution is to convert into an Alfred Workflow for easy use.

Requirements

Usage

  1. Double-click on the .workflow file
  2. Invoke script using CMD + R or the keyword "fixfinder"
  3. Enjoy restored sanity

Applescript command in detail

tell application "Finder"
	tell the front Finder window
		-- get the current bounds of the finder window
		set b to the bounds
		-- create a really wide window
		set the bounds to {item 1 of b, item 2 of b, 3000, item 4 of b}
		-- set window back to its original size
		set the bounds to b
	end tell
end tell

Version

1.0

License

MIT

About

An Alfred workflow to fix that annoying column bug in Mavericks

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published