urxvtq 459 B

1234567891011121314151617
  1. #!/bin/bash
  2. wid=$(xdotool search --classname urxvtq)
  3. if [ -z "$wid" ]; then
  4. /home/eddie/pipes/urxvtc -name urxvtq -geometry 80x28 -fg green -bg black +sb
  5. wid=$(xdotool search --classname urxvtq | head -1)
  6. xdotool windowfocus "$wid"
  7. xdotool key Control_L+l
  8. else
  9. if [ -z "$(xdotool search --onlyvisible --classname urxvtq 2>/dev/null)" ]; then
  10. xdotool windowmap "$wid"
  11. xdotool windowfocus "$wid"
  12. else
  13. xdotool windowunmap "$wid"
  14. fi
  15. fi