Introducing
The Slant team built an AI & it’s awesome
Find the best product instantly
Add to Chrome
Add to Edge
Add to Firefox
Add to Opera
Add to Brave
Add to Safari
Try it now
4.7 star rating
0
What is the best alternative to zsh?
Ad
Ad
Bash (Bourne-Again SHell)
All
21
Experiences
Pros
13
Cons
8
Top
Pro
Default shell on most systems
Bash is the default shell on virtually every UNIX system. Making it very portable across different systems and once you get used to it, you can use it everywhere.
See More
Top
Con
Extremely complicated and inconsistent rules
In Bash, exceptions are the rule, not even all being described by the main page. There are a grand total of 5 different ways of quoting, sometimes even when one does not want to, for instance in command substitutions. These are all based around preserving the literal meaning of every character, with an exception list. There is even an exception list to the exception list in 4 of the 5, regarding how the backslash behaves! The behavior of the backslash is also one of the quoting rules, so naturally, it also has an exception in how it works when it stands before a newline as compared to other characters. Bash has several layers of interpretations, all to be kept in mind: The ~ expands to the home of the current user. So if you store it in a variable, can you use it that way? Nope: tilde expansion comes before variable expansion. Aha, so that's how it works! Then, since applying quotation happens after redirections are set up, it must mean that redirecting within quotes works, right? Nope: there is an exception! If a redirection symbol is not quoted, quotation around the symbol is observed, but is not removed. So, since variable expansion also comes after setting up redirections, and no exceptions are described here in the man page, getting the name of a file from a variable and using it as a target should not work, right? No: redirection does not actually take place when the symbols are being read, the symbols are merely removed and are noted for later, right before when the actual command runs. Apart from 5 types of quotation, there are basically 2 quoting phases, 2 word splitting phases (with only one being controllable), and a tokenization phase on top of that. If you have a command, it could be an alias, a special built in, a non-special built in, a symbolic link to a file, a regular file, a function, with different rules regarding how they can be overridden, if redirection happens before or after arguments have been passed (what does "time my_command 2>&1 >log_file" do?), etc. This list is admittedly long, but it doesn't even scratch the surface of the bloat, complexity and inconsistencies of Bash.
See More
Top
Pro
Plenty of examples and tutorials
Since this is very mature shell there is a lot of great examples and other resources describing how to do almost everything.
See More
Top
Con
GPL3 is not compatible with Apple's lawyers
Apple, one of the largest distributors of UNIX systems, only ships an ancient version of bash that predates the iPhone. No one knows why as Apple hasn't said, but the version Apple includes in MacOS is from right before the license was updated to version 3 of the GNU GPL (General Public License). Other major companies (IBM, Microsoft) have had no problem shipping the latest version of bash, so it's unclear what Apple's lawyers are averse to. The GPL has always said that if you distributed a program, you granted everyone the right to use it freely. The biggest change in version 3 was the addition, "...and that includes software patents." This was necessary because back in 2006 Microsoft was demanding that any company that uses Linux pay them or get sued for infringing on their patents. They even took some companies, like TomTom, to court. No software which can be restricted retroactively like that is truly free, so GPL 3+ includes a clause saying that if you distribute the program, then you are also granting license to any patents you own that are necessary to run it. What patents Apple has that bash could possibly infringe on is a mystery, but the bigger question is, Why does Apple even care? So what if they are granting people the right to run bash without being sued by Apple. It's not like they were planning on doing that, right? Even though it is not bash's fault that it is not Apple Lawyer-approved, this is a CON for it because a lot of people use Apple products. While there are methods like brew to install a current version of bash, Apple does not make it obvious to their customers what they are missing.
See More
Top
Pro
Rich scripting capabilities on a single line
Want to run something 5 times? Write a throw-away loop: for i in 1 2 3 4 5; do date; done If you need it 100 times? Not a problem: for i in {1..100}; do date; done or: for ((i=0; i<100; ++i)); do date; done How about emailing yourself when remote server is back online? Sure thing: while ! ping -c1 example.com &>/dev/null; do date; sleep 5; done && mailx -s 'server is back!' me@myself.com
See More
Top
Con
Compatibility can be a curse
One of bash's claims to fame is compatibility with previous versions of itself and historic shells. But, doing that means that new features are often written in tortured, awkward syntax that is not easy to learn. For example, bash uses the POSIX way of doing arithmetic: to add 5+3 you must put the numbers in double parentheses with a dollar sign at the start: x=$((5+3)). It is true that many shells suffer from this same CON, but since bash is such an important shell, it has less wiggleroom to ditch clunky ideas that might break existing scripts.
See More
Top
Pro
POSIX compatible
See More
Top
Con
Lags behind on features compared to ZSH and Fish
People who wants power features or to customize their shell experience use zsh or fish.
See More
Top
Pro
Emacs-like keyboard control
By default, BASH uses shortcuts and concepts very similar to Emacs, so learning one often results in familiarity with the other.
See More
Top
Con
Filename expansion is not consistent
filename expansion is not consistent. "echo *" will print the names of the files in your current dir, if there are any... and will print "*" if there are none.
See More
Top
Pro
Rich built-in features
By default, there are many built-in features. They make really complex and reliable programs possible. In comparison to dash, for example, you can do the same tasks in less time and fewer lines of code.
See More
Top
Con
Non-intuitive shell expansion in for loops
If there are no .sh files, this will print mask itself: for filename in *.sh; do echo $filename done
See More
Top
Pro
Variables and aliases are listed the way they are built
alias and set will list aliases and variables in a format that can be run directly with no modifications. Even if the values contain \n. This is handy if you want to modify a value.
See More
Top
Con
No out-of-the-box command autocompletion
To have command autocompletion in bash you need to install third-party plug-ins.
See More
Top
Pro
Recursive globbing
ls **/*.log for example is supported by Bash if you set shopt -s globstar.
See More
Top
Con
One of the most dangerous languages around
What it is mostly used for are file system operations. Guess what it is bad at? Operating on files. It automatically splits and carries out filename expansion on every single string resulting from variable expansion and command substitution unless quoted, by default on whitespace, whilst spaces are very common in filenames. Before that, it even does pathname expansion, so woe to anywone who does not want to actually operate on files, but has a globbing metacharacter stored anywhere in a variable. This means what you store in a variable is not going to be what will ACTUALLY be accessed. If an empty variable is unquoted, it disappears completely due to word splitting, sometimes leading to applications signalling a missing parameter at a wrong position. If quoted however, said variables cannot be iterated over in a loop, no matter what character one uses for word splitting. If you use any globbing pattern with a command, be sure to use -- after the option arguments or if none are present, before starting the pattern with a mandatory ./ Otherwise, another Bash script run gone wrong or a hacker can create files named like an option ("-f", for instance) and your program will happily accept it as such, if it results from globbing. For interactive use, it is convenient. For programming, it is a no-go.
See More
Top
Pro
Man page is a trove of wonders
While the manual "page" is nearly a hundred pages long, it is actually surprisingly succinct and stuffed with good information. It is often better than Googling for answers when writing shell scripts. The way it is written makes it easy to stumble upon useful new programming features just by flipping through it . NOTE: If you find it dense and hard to read at the command line, look for the PDF version.
See More
Top
Pro
vi mode is more comprehensive than on other shells
Vi editing mode works without a glitch. "_" will print you the last argument of the latest command (zsh won't). VI mode is fast off the bat - You don't have to reset any variable (like "KEYTIMEOUT" in zsh) for that.
See More
Top
Pro
Copyright license is GPL 3+
Bash is licensed under the GNU General Public License ≥3, which gives much stronger assurances that the right to use it can't be restricted. For example, Microsoft would not be able to claim in court that, even though they've distributed Bash with the GPLv3, a license that explicitly grants people freedom, now Bash is essentially proprietary due to software patents and everyone who uses Bash owes them money. (This may sound ludicrous to those who were not alive when Microsoft tried a similar scheme against Linux fifteen years ago). The GPLv3 is a license that reflects the genuine ethical issues that arise when people give their time and skills to collaboratively build software. While most people wouldn't insist that their UNIX shell is licensed under the GPLv3+, it does matter and is a big PRO for Bash.
See More
Top
Pro
Built-in 'help'... helps a lot
Built-in 'help' provides quick and efficient help on builtins and keywords.
See More
Top
Pro
Rich scripting capabilities
BASH scripting is a rich and robust language.
See More
Hide
See All
Experiences
Get it
here
140
26
fish (Friendly Interactive SHell)
All
18
Experiences
Pros
15
Cons
3
Top
Pro
Auto suggestions
fish suggests commands as you type, based on command history, completions, and valid file paths. As you type commands, you will see a completion offered after the cursor, in a muted gray color (which can be changed with the fish_color_autosuggestion variable). However, you can NEVER turn them off!
See More
Top
Con
Not POSIX compliant
Being POSIX-compliant may be essential to some, but it is not the be-all-and-end-all. Much of the trouble with POSIX-compliant shells is BECAUSE of POSIX, since it captures the poor behavior and syntax that existed. In most cases, POSIX-compliance is a fool's errand since there are significant differences between implementations of even the same shell (e.g., Bash, etc.) on various platforms. Although fish tries not to break POSIX compatibility without a good reason, and despite efforts to implement a compatibility mechanism, you can face some issues if POSIX compatibility is expected/required. Though, enthusiasts fix these cases. For example, add set shell=sh in your .vimrc to solve the issue for vim.
See More
Top
Pro
Excellent documentation
It has a great tutorial. And the official documentation is clear, full of eloquent examples, and to the point.
See More
Top
Con
Doesn't support history expansion ("!!")
Fish has no support for !!, but you can use Oh My Fish shell framework and install bang-bang plugin to have this shortcut in Fish shell. The downside of using bang-bang is that it takes over ones default key bindings, for those that don't use them it should not be an issue but for those that do it is an annoyance to be considered. For sudo !!, this can also be achieved by making this custom function: function sudo if test "$argv" = !! eval command sudo $history[1] else command sudo $argv end end
See More
Top
Pro
Already set up for you
While other shells require a lot of set up to act the way you want them to and to have some useful features, fish works perfectly out of the box. It has all the most widely used features baked in and are there out of the box without having the need to install plugins or tweak any configuration files.
See More
Top
Con
Very slow
Much of the functionality in Fish was not written with performance in mind. However, scripting in a shell is not supposed to be about performance. If you need it, use a full-blown programming environment to get it. Shells are for gluing the high-performance tools together.
See More
Top
Pro
Pretty usable even without plugins
Everything you need from oh-my-zsh is available on default fish, don't need to install any plugins. And even better, fish is smaller than zsh.
See More
Top
Pro
Universal variables
You can define Universal variables, which are shared instantaneously through all running fish sessions and persists through shell restarts.
See More
Top
Pro
Interactive searchable history
Fish has by far the best way to work with history, everything is automatically searchable. It works in the way you expect. No learning required.
See More
Top
Pro
Adding, removing and editing aliases is extremely easy
See More
Top
Pro
Creates completion files from manual pages
Fish_update_completions parses manual pages installed on the system, and attempts to create completion files in the fish configuration directory.
See More
Top
Pro
Fisherman ⚑ A fast, modern plugin manager for fish
Large test coverage, micro-second shell start, compatibility with plugins from other existing frameworks such as Tackle, Oh My Fish and Wahoo, cache system, offline index, the Fishery and other features.
See More
Top
Pro
Intuitive shell expansion in "for" loops
Unlike bash, this won't return you string *.sh if no .sh files are found for filename in *.sh echo "$filename" end
See More
Top
Pro
Less ambiguous lists
Here is a sample. Notice that there are 2 files with spaces in names. ls produces a valid list, and for loop correctly iterated through its values. ➤ for a in (ls); ls -l $a; end -rw-rw-r-- 1 sashka sashka 0 Apr 19 03:16 alma mater.txt -rw-rw-r-- 1 sashka sashka 0 Apr 19 03:16 whatever i want.txt sh scripts tend to be fragile when there are lists containing values with spaces. Also: ➤ echo $PATH /usr/bin /bin /usr/sbin /sbin /usr/local/bin ➤ echo $PATH[1] /usr/bin ➤ echo $PATH[-1] /usr/local/bin
See More
Top
Pro
High portability
Because it needs very little configuration to work properly, you can use Fish everywhere. If you are working on a system you don't usually work, installing Fish from the repository is easy and will give you the same experience as the installation on your own machine without having to drag a dotfile around.
See More
Top
Pro
Auto indentation when creating functions
When writing functions in an interactive shell, it will auto-indent as needed for if, for, function, etc.
See More
Top
Pro
Awesome, consistent, not-confusing sytax
The following, for example: for file in (find . -name "*.foo" -type f) fgrep -H "something" $file echo "hello" $file end | grep -v "hello" Will run the for loop, take all the stdout from it (both the fgrep and echo), and then pipe it through the final grep command.
See More
Top
Pro
Configuration framework for fish shell
Fish community maintains Oh My Fish, which is a shell framework inspired on Oh My Zsh awesome design and name. It offer a lot of beautiful prompt themes and awesome plugins, is lightweight, awesome and very simple to use.
See More
Hide
See All
Experiences
Get it
here
211
27
rc (shell)
All
4
Experiences
Pros
3
Cons
1
Top
Pro
Simple
rc is a very simple and easy to learn shell.
See More
Top
Con
Lacks return statement
rc has no return statement.
See More
Top
Pro
C-like syntax
rc has very C-like syntax, which is very helpful for people who are used to C-like programming languages and will find rc's syntax very enjoyable. For example: for (i in `{seq 1 100}) { echo $i }
See More
Top
Pro
Sane array handling
In rc $array expands to the whole array and if one of the elements of the array has spaces in it, it's still considered one single element after the array variable expansion.
See More
Hide
Get it
here
9
0
tcsh (shell)
All
3
Experiences
Pros
2
Cons
1
Top
Pro
C-like shell
It's a C-like shell with tenex command-completion feature, which is very convenient.
See More
Top
Con
Limited support online
The support and number of guides and tutorials is rather limited for tcsh online because there are not many people who use it. At least compared to some of the other more popular alternatives.
See More
Top
Pro
Organized documentation
All the documentation that's needed to use tcsh is located in man tcsh instead of being spread on various helper programs.
See More
Hide
Get it
here
17
9
iTerm2
All
27
Experiences
Pros
21
Cons
5
Specs
Top
Pro
Extremely customizable
Other than being able to customize the various shortcuts, iTerm2 also lets you customize the colorscheme, font, transparency, etc.
See More
Top
Con
Keycodes are not passed through following Linux standards
If you come from a Linux terminal emulator (Gnome Terminal, Konsole...) and you rely on key-combos that are widely supported in those, porting the same functionality to iTerm is possible but will require a lot of research and configuration on your part, so account for a long painful adoption period.
See More
Top
Pro
Autocomplete is built-in
iTerm has autocomplete features built in. It remembers your past commands and when you are writing something on the terminal, simply pressing Control-; it will show you a drop down menu of suggestions from which to choose.
See More
Top
Con
Not quite as fast as Alacritty or Kitty
Comparing these 3 terminals on the same machine/config, iTerm stands out as the slowest of the bunch. The difference may not be noticeable to all users.
See More
Top
Pro
Complete out of the box
Unlike most terminal emulators, iTerm2 comes with a pretty complete set of features. It has built-in search, autocompletion, tabbed navigation, Growl support and even a built-in clipboard manager for various API keys and such.
See More
Top
Con
Way too many menu items and settings
Finding the right one is like searching for a needle in a haystack.
See More
Top
Pro
Fine tuning for fonts
It's possible to choose a font and adjust vertical and horizontal spacing.
See More
Top
Con
Doesn't support Snow Leopard 10.6.8
Some people still use Snow Leopard or other 32-bit systems.
See More
Top
Pro
Can immediately open files inside a text editor
You can Ctrl+Click on a file path to open said file in a text editor.
See More
Top
Con
Doesn't support RTL
See More
Top
Pro
Supports mouse actions
Has support for mouse actions like clicking, dragging, selecting, etc.
See More
Top
Pro
Active maintainers
Issues resolved fast by quality contributors.
See More
Top
Pro
Works well with powerline fonts
See More
Top
Pro
Completely free and open source
iTerm2 is completely free and open source. It's released under the GPLv2 license.
See More
Top
Pro
Split panes
Easy to split panes to either horizontal or vertical sections. Makes it easy to observe multiple console windows.
See More
Top
Pro
Supported by many applications as a terminal app selection
If an application has terminal integration, there is high probability it allows iTerm2 to be selected.
See More
Top
Pro
Intuitive
See More
Top
Pro
Cmd+Shift+I to Input all
Wanna SSH your server from multiple tabs, here you go.
See More
Top
Pro
You only need to type in commands once
iTerm2 can store up to 4M of history of commands you already used. This, coupled with the built-in search features makes it possible to type a command only once and then search for it through the history for subsequent uses.
See More
Top
Pro
Works perfect with Oh My Zsh
It's a perfect base to add Oh My Zsh on top of it and enjoy a lot of themes and a really pleasant look and feel.
See More
Top
Pro
Works well with tmux
The great mouse and clipboard support that are built-in go really well with tmux.
See More
Top
Pro
Any key can be mapped to any function
Using the Preferences Menu you can set up hotkeys to map virtually any action you can think of to a single key or a combination of them. This is extremely helpful as it allows you to use shortcuts to edit commands you are typing in the terminal and while most terminal emulators have shortcuts for this sort of thing, few of them let you define your own.
See More
Top
Pro
GPU-rendered, blazing fast and super smooth
Many people say they use Kitty or Alacritty because they are GPU-rendered. That was true a long time ago. But iTerm2 has been GPU rendered for years now. It's so fast and smooth that you soon forget you are in a terminal.
See More
Top
Pro
Beautiful, minimalistic and elegant UI
It's super-clean and during use it gets completely out of the way, it's a beautiful canvas for your terminal work, a pure joy that never gets old.
See More
Top
Pro
Can be configured as a drop-down terminal
Can be configured to work as a drop down terminal like Quake.
See More
Top
Pro
Cmd+D to split plane vertically
Very handy to use multi-tab.
See More
Specs
Supported platforms:
macOS
Ligature support:
Yes
Hide
See All
Experiences
Get it
here
654
56
Xonsh (The Xonsh Shell)
All
5
Experiences
Pros
5
Top
Pro
Easy to understand, Python-like syntax
Xonsh uses a syntax which is a superset of Python 3.4 plus some additional shell primitives. Because of the similarity to Python, which is famously an easy to understand programming language, the syntax of Xonsh is pretty easy to grasp too, even more so for Python programmers.
See More
Top
Pro
Portable
The xonsh shell has AppImage that makes it Linux-portable.
See More
Top
Pro
Extensible
Most parts of xonsh are extensible. You can change tab-completer, prompt, history backend, aliases, functions and pack it to special package (called "xontrib") and put it on Github. The logic are clear and documented well.
See More
Top
Pro
Command history on steroids - including output
Xonsh has one feature that can be considered particularly unique. It stores not just the commands you type, but their output, and doing a search on your history (configurably) can search the output as well.
See More
Top
Pro
Cross platform support
Xonsh has native cross-platform support.
See More
Hide
Get it
here
51
10
DASH
All
6
Experiences
Pros
5
Cons
1
Top
Con
Doesn't support all bash features
Dash does not support all bash features, sometimes called 'bashisms' unless explicitly pointed at /bin/sh.
See More
Top
Pro
Fast startup
Dash has a very fast startup, this happens because the shell is started a lot of times during boot and dash minimizes the work it does during this process.
See More
Top
Pro
Low memory usage, which matters a lot in embedded
It is designed to be very lightweight and has no support for shell specific extensions that are not POSIX.
See More
Top
Pro
Default shell on Debian systems
DASH is the default shell for Debian based systems due to it speed, full POSIX compliance and low overhead.
See More
Top
Pro
Full POSIX support
It's fully POSIX compatible, so if your script runs on dash it will probably run on all other shells.
See More
Top
Pro
A perfect clone
It's a clone of the original System V4 Bourne shell.
See More
Hide
Get it
here
23
8
Transmit 4
All
5
Experiences
Pros
5
Top
Pro
Fast and powerful file exchange client
Exchange data with FTP, SFTP or WebDAV servers or your Amazon S3 storage.
See More
Top
Pro
Supports Amazon S3 & WebDAV
In addition to FTP, allows exchanging data with SFTP or WebDAV servers or your Amazon S3 storage.
See More
Top
Pro
Enable a server connection as a normal disk in your Finder
So you can access your storage without the Transmit client.
See More
Top
Pro
FTP Sync
Scans local and remote for difference and only transfer modified files. It's not rsync, but it's the next best thing
See More
Top
Pro
Can enable a server connection as a normal disk in your Finder
So you can access your storage without the Transmit client.
See More
Hide
$45
86
1
Better Touch Tool
All
16
Experiences
Pros
16
Top
Pro
Endlessly customizable
See More
Top
Pro
Extendability
Allows user to extend my MBP with touchbar by creating custom actions per app. Also supports system-wide integration (touchbar actions).
See More
Top
Pro
BTT makes it simple to sync your hotkey, Touch Bar and gesture setup between several machines
See More
Top
Pro
Sync settings in the cloud
See More
Top
Pro
There's a free companion app for iOS that you can use to remote control your Mac
See More
Top
Pro
Supports Apple script, bash, javascript
See More
Top
Pro
Customize window button behaviour
See More
Top
Pro
Make your own menu bar items
See More
Top
Pro
Active community
See More
Top
Pro
Built-in clipboard manager
See More
Top
Pro
Highly configurable window moving / window snapping options
See More
Top
Pro
Key sequences
Supports key sequences for things like text expansion.
See More
Top
Pro
Supports MIDI devices (keyboards, DAW controllers, etc.)
Listen for MIDI events and have them control anything. For example you could use a DJ controller in your favorite video editor, etc.
See More
Top
Pro
Lets you configure your external mouse's 4th and 5th button per app
See More
Top
Pro
Record gestures / drawings and assign them to actions
See More
Top
Pro
Developer is regularly adding features / improvements
See More
Hide
See All
Experiences
3.50
15
0
sh
All
3
Experiences
Pros
2
Cons
1
Top
Con
Not suitable for interactive use
The Bourne shell has always been criticized (most notably by Bill Joy, author of csh) as being unfriendly for interactive use. It has no tilde (~) expansion. Limited file test operators. Limited math operators.
See More
Top
Pro
Truely the most broadly available shell
It may not be the best if you want power, but if you want to write a POSIX script that will run everywhere, it's a pretty good choice.
See More
Top
Pro
Most influential Unix shell alongside csh
Bourne shell introduced features such as piping, here documents, command substitution, variables, control structures for condition-testing and looping and filename wildcarding.
See More
Hide
9
7
CodeKit
All
14
Experiences
Pros
11
Cons
3
Top
Pro
Everything is set up for you
Everything you need to get a project started is included with CodeKit. Thanks to the professional support, different components of the workflow pipeline are guaranteed to play nicely with each other without you needing to do the research on how to configure them. More advanced features that may require extra configuration to set up with other workflow wrappers are set up out of the box in CodeKit, like automatic browser updating, linting, and source maps.
See More
Top
Con
Mac only
This is a major problem for larger teams that have varied development environments.
See More
Top
Pro
Provides a clean and modern GUI
CodeKit has a clean and intuitive graphical user interface out of the box. Most other tools in this category run as command line utilities or require unsupported third-party plugins to run with a GUI. The CodeKit GUI makes it easier to navigate and manage the various components of your project with helpful UIs like dropdowns, and views that provide extra details without having to run a separate command.
See More
Top
Con
Confined
You get only the tools that are provided by the application.
See More
Top
Pro
Live browser updating built in
CodeKit has live updating built in and will update monitored files across multiple browsers and devices, and refresh CSS without a new page load. Other workflow wrappers have live updating, but they require extra configuration. With CodeKit, everything is set up for you so you can get it up and running in no time at all.
See More
Top
Con
Proprietary
See More
Top
Pro
Interactively define how files compile with a GUI
You can navigate your project directory, and use a menu form to set up how it gets compiled without needing to read configuration documentation, or deal with configuration errors. On top of that, file watching and recompilation is built in with no extra configuration needed.
See More
Top
Pro
Great value for money
At a one time cost of $29, it's a great deal considering how powerful and easy to use it is.
See More
Top
Pro
Visual package management with Bower
CodeKit provides a clean GUI for Bower that makes it easier to navigate and get information about modules without having to deal with a command line interface.
See More
Top
Pro
Connects with MAMP
You can use it to, for example, live-update server-side PHP by establishing a connection with your local MAMP server.
See More
Top
Pro
Don't have to worry about vendor prefixes due to Autoprefixer support
Autoprefixer automagically adds vendor prefixes based on latest information.
See More
Top
Pro
Reduces size of compressed images
CodeKit provides a powerful tool to automatically reduce the size of compressed images and production web code.
See More
Top
Pro
Live pre-processor and script compilation
CodeKit supports live compilation of Less, Sass, Stylus, Jade, Haml, Slim, CoffeeScript, JavaScript and Compass including automatic debugging and minification.
See More
Top
Pro
Has over 6k componenets
Install 6,000+ Bower components with a single click: Bootstrap, jQuery, Modernizr, Zurb Foundation, even WordPress.
See More
Hide
See All
Experiences
Get it
here
51
1
ImageOptim
All
10
Experiences
Pros
6
Cons
3
Specs
Top
Pro
Losslessly compresses PNG, GIF, and JPEG images
Great for compressing images for web usage or saving harddrive space.
See More
Top
Con
Compression algorithm not as good as counterparts
See More
Top
Pro
Fast & Simple
See More
Top
Con
Cannot abort an optimization
Optimization can run for a long time. Sometimes it reaches 20% quickly and then spend a long time to attain 21.2%. But you cannot interrupt the process.
See More
Top
Pro
Simple drag'n' drop interface
Simply drag images (or folders) into the window.
See More
Top
Con
Does not work on SVG yet
See More
Top
Pro
Tries several different image optimizers before picking the best one
See More
Top
Pro
Edits files in place
It does edit files in place, overwriting the original. This is exactly what I want, so I love it, but it's good to know beforehand.
See More
Top
Pro
Can handle PNG, GIF, and JPEG images
Great for compressing images for web usage or saving harddrive space.
See More
Specs
Platforms:
macOS, Web
Hide
See All
Experiences
Get it
here
70
2
Hammerspoon
All
5
Experiences
Pros
3
Cons
2
Top
Pro
1512 issues are closed in the download page in GitHub
https://github.com/Hammerspoon/hammerspoon/issues They do fix issues that come from the community.
See More
Top
Con
Has 324 issues on their download page in GitHub
https://github.com/Hammerspoon/hammerspoon/issues I can not list all the issues.
See More
Top
Pro
Deeply customizable
Hammerspoon's Lua scripting and broad API allows you to perform any action you can imagine on your mac. It hooks into many OS APIs directly and has some high-level APIs to manipulate things like Spotify or iTunes. See the full list here.
See More
Top
Con
Some knowledge of programming required
Hammerspoon is scripted in the Lua programming language, and some familiarity with programming in general will be needed to use it. Some plugins exist that can be used by adding some files to a specific folder, but this will not give the flexibility that is so key to Hammerspoon
See More
Top
Pro
Automate actions based on the operating system
Hammerspoon lets you hook into OS level events and trigger any action you can imagine. From setting up a simple keyboard shortcut to launching a complex workflow using multiple apps and scripts.
See More
Hide
Get it
here
24
1
TotalTerminal
All
4
Experiences
Pros
2
Cons
2
Top
Con
No longer under active development
See More
Top
Pro
Allows quick access to the terminal system-wide
TotalTerminal is a plugin for Terminal.app. It provides persistent Visor Window which slides down when you press a hot-key.
See More
Top
Con
Doesn't work on El Capitan with SIP on
Apple introduced a new security feature in OSX El Capitan, called System Integrity Protection, that, among other things, does not allow augmenting Terminal. While it's possible to turn SIP off (instructions on how to turn off SIP and get TotalTerminal working on El Capitan can be found here) it is not recommended.
See More
Top
Pro
Quake style window show/hide
You maybe know or don't know Quake from Id Software. But this game had the best idea to hide/show a terminal window. Simply using full width but 26 rows. On show the widow slid down from top of screen. On hide it mode up to top edge of the screen until it disappeared. 2nd next best was the semi translucent background. You could still see through the terminal window while it was shown. The same style is now available in TotalTerminal and iTerm2 (OSX Terminal replacement - no Terminal plugin).
See More
Hide
Get it
here
48
2
Pagehop
All
6
Experiences
Pros
6
Top
Pro
All recipes and tools are open source and you can write your own (JavaScript)
The API is very minimalistic (very easy to learn), and there is complete reference for it.
See More
Top
Pro
Web search (horizontal and vertical) and using tools like Regular Expressions on results
Pagehop is bundled-up with recipes for Google, Bing and DuckDuckGo (horizontal) search, and with recipes for Wikipedia, StackOverflow, YouTube, jQuery API documentation, Mozilla Developer Network and others for vertical search. After making a search you can further filter your results with tools - Regular Expressions, Fuzzy Matching or Search in the urls (instead of titles).
See More
Top
Pro
Browsing of online documentation (any static web source)
Navigating through known set of hyperlinks without an actual rendered page, just by writing.
See More
Top
Pro
Quickly navigate to web pages and their links
See More
Top
Pro
Unlimited, free, fully-functional evaluation
Like the SublimeText editor, Pagehop doesn't lock any features before you purchase a license and only displays (a tiny bit annoying) registration message.
See More
Top
Pro
Keyboard shortcut access to Hacker News
To be able to bring up todays news on a key shortcut, is absolutely awesome. Holding shift while pressing enter (choosing) on results, will keep the window open - this way you can open several pages you want to read through with your morning coffee.
See More
Hide
Get it
here
15
1
Cloak
All
6
Experiences
Pros
4
Cons
2
Top
Con
Hasn't published server/data center locations
See More
Top
Pro
Does SSL Pinning on OS X
SSL pinning protects against some forms of man-in-the-middle attacks that even SSL encrypted traffic is vulnerable to. Not long ago, iOS did not allow for pinning but that may have changed more recently.
See More
Top
Con
OSX & iOS Only, without even manual configuration instructions for Linux/Windows
See More
Top
Pro
Responsive developer
The developer of Cloak is extremely responsive to feedback and quick to answer questions or support requests.
See More
Top
Pro
Senses Trusted WiFi networks
Cloak can be set to not use the VPN on whitelisted WiFI SSIDs (like home/work).
See More
Top
Pro
Unlimited devices (as long as they're OSX/iOS)
Unlimited devices and data per account, so you can connect up the whole family or office on one account if you so choose.
See More
Hide
Get it
here
15
1
Unclutter
All
5
Experiences
Pros
2
Cons
2
Specs
Top
Pro
Convenient and fast access to files and notes
Unclutter lives in the navbar at the top of your screen, and is always accessible. Any files and notes stored in Unclutter can be quickly accessed from anywhere, with just a mouse movement and scrolling down.
See More
Top
Con
Can't keep visor open when typing in other applications
The unclutter visor will not stay open when working/typing in other apps. Sometimes it is desirable to use the visor to re-type things, it's not possible outside of copying and pasting, or opening and re-closing the visor.
See More
Top
Pro
Keep desktop clean(er)
Instead of keeping commonly used files on the desktop, you can tuck them away to the top of the screen. This can unclutter your screen, or create more room for more icons if you like quick access to everything.
See More
Top
Con
$10 seems a bit much for what it does
See More
Specs
Platforms:
MacOS
Dark Theme:
YES
Sync:
Dropbox, iCloud Drive, Google Drive, etc.
Hide
$6
12
1
SizeUp
All
7
Experiences
Pros
5
Cons
2
Top
Pro
Keyboard centric
SizeUp has user-configurable keyboard shortcuts for a set of pre-defined actions.
See More
Top
Con
Nag window
If a license is not purchased there is a nag window (which suspends function) that pops up when loading the app (at user login). The nag pop-up is also summoned at certain time intervals and by performing a certain number of commands (manually or by keyboard shortcut).
See More
Top
Pro
Supports multiple monitors / spaces
Windows can be sent to different monitors and spaces. It can also be aligned as needed.
See More
Top
Con
No on-the-fly split screen window settings
Unlike some other tiling window managers, SizeUp has no way to change the size of split screen actions on-the-fly. Any time a user wants to change how much room on the screen a window takes up when using the split screen function, they will need to manually change the settings, which can be time consuming.
See More
Top
Pro
Simple
SizeUp is easy and simple to use without having to configure.
See More
Top
Pro
AppleScript support allows extending functionality
AppleScript permits adding features such as tiling all open windows. Additionally, FastScripts it allows the user to add keyboard shortcuts to AppleScripts.
See More
Top
Pro
Menubar dropdown for shortcuts
Learning a bunch of keyboard shortcuts right off the bat may be difficult to remember at first, which is why a menubar shortcut for the app exists with all the shortcuts listed.
See More
Hide
See All
Experiences
Get it
here
17
2
Growl
All
3
Experiences
Pros
3
Top
Pro
Support for a lot more applications than the default notification system
In addition to all the applications that other people have written that support Growl, Growl includes several 'Extras' that serve various functions.
See More
Top
Pro
Ability to be themed
Growl comes with almost 20 themes pre-installed so you can pick what works best for you. You can also create and install your own custom themes.
See More
Top
Pro
Sync with mobile phone via Prowl
Prowl is the Growl client for iOS. Push to your iOS device notifications from your Mac or Windows computer, or from a multitude of apps and services.
See More
Hide
Get it
here
63
6
DaisyDisk
All
4
Experiences
Pros
2
Cons
2
Top
Pro
Helps find and delete files taking up HDD space
While working on your Mac you create and download a lot of files, but rarely delete anything. As time goes by you have less and less room for your data. DaisyDisk finds those hidden unused gigabytes.
See More
Top
Con
Calculation based on 1000 not 1024
It's nice to have a base 1000 (MB, GB, …) calculation but it should be optional. Default should be 1024 (MiB, GiB, …)
See More
Top
Pro
Awesome visualization of files on drive
DaisyDisk gives you a perfect overview of all the disks connected to your Mac, be it Macintosh HD, flash card, Thunderbolt disk or network storage. And does it in a beautiful way.
See More
Top
Con
Expensive for how often it is used
See More
Hide
$9.99
142
11
Built By the Slant team
Find the best product instantly.
4.7 star rating
Add to Chrome
Add to Edge
Add to Firefox
Add to Opera
Add to Brave
Add to Safari
Try it now - it's free
{}
undefined
url next
price drop