Skip to content

Instantly share code, notes, and snippets.

@ConteMan
Created December 12, 2020 23:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ConteMan/409fbd0ecb365931b5d0aece170d5433 to your computer and use it in GitHub Desktop.
Save ConteMan/409fbd0ecb365931b5d0aece170d5433 to your computer and use it in GitHub Desktop.
auto open AltTab
#!/bin/zsh
count=$(ps -ef | grep -i '/Applications/AltTab.app' | grep -vc 'grep')
if [ $count -eq 0 ]
then
open /Applications/AltTab.app
echo 'Open AltTab now'
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment