2

How can allow the terminal on Linux to write Arabic without reversing its words?

For example, when I write "زمالك" it is written from left to right. How can I fix this?

Gareth
  • 19,080

3 Answers3

2

It's a known bug. Check out mlterm.

1
  1. Install the following packages:

    sudo apt-get install libfribidi0 libfribidi-dev
    
  2. Download & install bicon.

  3. Open /usr/share/applications/gnome-terminal.desktop in any editor you like:

    gksudo gedit /usr/share/applications/gnome-terminal.desktop
    
  4. Add the following lines to the end of the file:

    Terminal=true
    Exec=/usr/bin/bicon.bin
    
  5. If you have a terminal icon on your desktop, remove it and make a new one.

TRiG
  • 1,360
0

GNOME Terminal version 3.34 supports right to left scripts such as Arabic, and so do other VTE-based emulators (e.g. Tilix, Terminator, Xfce Terminal, Guake...) if using VTE version 0.58.

egmont
  • 2,566
  • 1
  • 15
  • 18