Thursday, April 25, 2024
26
rated 0 times [  26] [ 0]  / answers: 1 / hits: 149865  / 2 Years ago, sat, june 11, 2022, 2:56:30

In putty/cygwin my config is:




  • select in console -> copies to clipboard

  • right click -> pastes from clipboard.



Was after a terminal in Linux which might provide me with both of these features? I haven't been able to find one.



Any help would be appreciated.


More From » gnome-terminal

 Answers
3

Solution with Terminator from this site.



sudo vi /usr/share/terminator/terminatorlib/terminal.py


Look for function : on_buttonpress



Revert button test (contextual menu go to middle click, paste on right click) :



def on_buttonpress(self, widget, event):
...
if event.button == 1:
...
elif event.button == 3:
...
elif event.button == 2:
...

return(False)


Now waiting for the feature request on Terminator :)


[#34505] Saturday, June 11, 2022, 2 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
oraoming

Total Points: 354
Total Questions: 105
Total Answers: 124

Location: Iraq
Member since Sat, Apr 3, 2021
3 Years ago
oraoming questions
Fri, Aug 20, 21, 10:08, 3 Years ago
Mon, May 24, 21, 21:56, 3 Years ago
Mon, Dec 12, 22, 23:21, 1 Year ago
Mon, Sep 12, 22, 11:38, 2 Years ago
;