Remmina - The GTK+ Remote Desktop Client  v1.4.33
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.
launcher.sh
Go to the documentation of this file.
1 #!/bin/sh
2 
3 ####################
4 # Main Script
5 ####################
6 
7 TERMINALS="xfce4-terminal gnome-terminal x-terminal-emulator"
8 
9 for t in $TERMINALS; do
10  TERMBIN="$(command -v "$t")"
11  if [ "$?" -eq 0 ]; then
12  case "$t" in
13  xfce4-terminal)
14  TERMBIN="$TERMBIN --disable-server"
15  break
16  ;;
17  gnome-terminal)
18  break
19  ;;
20  x-terminal-emulator)
21  break
22  ;;
23  esac
24  fi
25 done
26 
27 $TERMBIN -e "$1" &
28