Skip to content

Instantly share code, notes, and snippets.

@Inom-Turdikulov
Last active January 6, 2023 22:14
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 Inom-Turdikulov/ed6e72bb8431c7300d359701de1f7b29 to your computer and use it in GitHub Desktop.
Save Inom-Turdikulov/ed6e72bb8431c7300d359701de1f7b29 to your computer and use it in GitHub Desktop.
Dmenu program switcher - search through open programs and switch to selected (wmctrl required)
#!/bin/sh
# Search through open programs and switch to their tag
# wmctrl required
program=$(wmctrl -lx | cut -d ' ' -f4 | cut -d '.' -f2 | tr "[:upper:]" "[:lower:]" | dmenu -p "Switch to" -fn "monospace:size=15")
if [ ! -z "$program" -a "$program" != " " ]; then
wmctrl -x -a "$program"
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment