Remmina - The GTK+ Remote Desktop Client  v1.4.2
Remmina is a remote desktop client written in GTK+, aiming to be useful for system administrators and travellers, who need to work with lots of remote computers in front of either large monitors or tiny netbooks. Remmina supports multiple network protocols in an integrated and consistent user interface. Currently RDP, VNC, NX, XDMCP and SSH are supported.
functions.sh
Go to the documentation of this file.
1 #!/bin/sh
2 
3 # Awaits user key press.
4 pause ()
5 {
6  echo "Press any key to continue…"
7  OLDCONFIG=$(stty -g)
8  stty -icanon -echo min 1 time 0
9  dd count=1 2>/dev/null
10  stty $OLDCONFIG
11 }
12 
13 # Set terminal title for gnome-terminal and many others
14 settitle() {
15  echo -n -e "\033]0;${remmina_term_title}\007"
16 }