We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello,
Could you add some argument to guake to close a terminal by name
Currently I check all terminal names by using index to find the name, and close it. It s too long
#!/bin/bash #set -x for i in {10..0}; do #echo "$(guake -s $i -l)" if [ "$(guake -s $i -l)" == "$1" ]; then guake -s $i -e "exit; sleep 1; exit;" >/dev/null 2>&1 ; fi done
Regards,
The text was updated successfully, but these errors were encountered:
Added new slug file, Guake#1835, sem-ver: feature
8c40b18
No branches or pull requests
Hello,
Could you add some argument to guake to close a terminal by name
Currently I check all terminal names by using index to find the name, and close it.
It s too long
#!/bin/bash
#set -x
for i in {10..0}; do
#echo "$(guake -s $i -l)"
if [ "$(guake -s $i -l)" == "$1" ]; then
guake -s $i -e "exit; sleep 1; exit;" >/dev/null 2>&1 ;
fi
done
Regards,
The text was updated successfully, but these errors were encountered: