1234567891011121314151617 |
- #!/bin/bash
- wid=$(xdotool search --classname urxvtq)
- if [ -z "$wid" ]; then
- /home/eddie/pipes/urxvtc -name urxvtq -geometry 80x28 -fg green -bg black +sb
- wid=$(xdotool search --classname urxvtq | head -1)
- xdotool windowfocus "$wid"
- xdotool key Control_L+l
- else
- if [ -z "$(xdotool search --onlyvisible --classname urxvtq 2>/dev/null)" ]; then
- xdotool windowmap "$wid"
- xdotool windowfocus "$wid"
- else
- xdotool windowunmap "$wid"
- fi
- fi
|