mirror of
https://github.com/elenapan/dotfiles.git
synced 2025-12-27 07:44:56 +08:00
4 lines
184 B
Bash
Executable file
4 lines
184 B
Bash
Executable file
# Focuses the first window with some string in its title
|
|
# Use: focus.sh mystring
|
|
WINDOWID="$(wmctrl -l | grep -v "wmctrl" | grep -m 1 "$1" | awk '{print $1}')"
|
|
wmctrl -i -a $WINDOWID
|