This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Usage: ww -f "window class filter" -c "run if not found" | |
# Usage: ww -fa "window title filter" -c "run if not found" | |
## Find and contribute to a more updated version https://github.com/academo/ww-run-raise | |
POSITIONAL=() | |
while [[ $# -gt 0 ]]; do | |
key="$1" |