blob: 0f9274599ac2afbd79de2d21d7f9c7a70305f576 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/sh
#
# Guake-like show-and-hide terminal in a couple of lines of code.
# Powered by urxvt+tmux
################################################################################
if pid=$(pgrep -f 'urxvt.*gruake'); then
kill $pid
else
urxvt -name gruake -e sh -c 'tmux new -A -s gruake'
fi
|