summaryrefslogtreecommitdiffstats
path: root/src/external_tools/functions.sh
blob: 2f70eaf9fa904b9d0051ff26f49ac7971c98381a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh

# Awaits user key press.
pause ()
{
 echo "Press any key to continue…"
 OLDCONFIG=$(stty -g)
 stty -icanon -echo min 1 time 0
 dd count=1 2>/dev/null
 stty $OLDCONFIG
}

# Set terminal title for gnome-terminal and many others
settitle() {
  echo -n -e "\033]0;${remmina_term_title}\007"
}