Table of Contents

, ,

Fix Remmina right click tools

If the tools in below screenshot don't work install the gnome-terminal first

sudo apt install gnome-terminal

then change the /usr/share/remmina/external_tools to look like below

#!/bin/sh
 
####################
# Main Script
####################
#gnome-terminal -e $(dirname $0)/$1
 
# if [ -x "/usr/bin/x-terminal-emulator" ];
# then
#  TERMNAME="/usr/bin/x-terminal-emulator"
# else
#  TERMNAME="gnome-terminal"
# fi
 
TERMNAME="gnome-terminal"
$TERMNAME -e "$1" &
 
#if [ "$2" = "1" ]
#then
#  echo "Hit a key to continue…"
#  Pause
#fi

Tested on

References

https://gitlab.com/Remmina/Remmina/-/issues/584