1

Currently I open the interpreter with a keybinding pointing to gnome-terminal --hide-menubar --full-screen then type python

I want to open it directly.

I've tried:

gnome-terminal --hide-menubar --full-screen && python

/usr/bin/./python

...as well as the advice in this question:

bind '<Super>8' exec x-terminal-emulator --title python -e /usr/bin/python

Note that I'd also like to preserve --hide-menubar --full-screen

Thanks

zadrozny
  • 337
  • 3
  • 9
  • Try the -e python instead of && python to get gnome-terminal to run python instead of bash, see http://pwet.fr/man/linux/commandes/gnome_terminal – maxpolk Jan 22 '16 at 01:34
  • Worked. Thanks! Want to add your comment as an answer? – zadrozny Jan 22 '16 at 01:36

1 Answers1

0

Try the -e python instead of && python to get gnome-terminal to run python instead of bash, see its man page

maxpolk
  • 223
  • 1
  • 6