urxvtq 501 B

12345678910
  1. #!/bin/bash
  2. if [ $(ps aux | grep -v grep | grep -c "urxvt -name urxvtq") -eq 0 ]; then
  3. urxvt -name urxvtq -geometry 200x24 &
  4. xdotool windowactivate --sync $(xdotool search -sync --onlyvisible --classname urxvtq)
  5. elif xdotool search --onlyvisible --classname urxvtq &> /dev/null; then
  6. xdotool windowunmap $(xdotool search -sync --classname urxvtq)
  7. else
  8. xdotool windowmap --sync $(xdotool search -sync --classname urxvtq)
  9. xdotool windowactivate --sync $(xdotool search -sync --classname urxvtq)
  10. fi