how to use fzf with bidirectional languages?

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP












1















I am using a bash script to provide a search utlilty to locate and open files and directories.



here is the script:



#!/bin/bash
lxterminal -e "bicon.bin locate /home /run/media |fzf >| ~/.mylocateData"
# ^ this the problematic part
sleep 0.4
while [[ "$(pidof fzf)" != "" ]] ; do
sleep 0.4
done
file="$(cat ~/.mylocateData)"
if [[ -z "$file" ]] ; then exit ; fi
mimetype=$(file --dereference --brief --mime-type "$file" )
case "$mimetype" in
inode/directory) lxterminal -e bicon.bin ranger "$file" ;;
image/*) feh "$file" & disown ;;
text/* | */xml) lxterminal -e vim "$file" ;;
video/* | audio/*) mpv --really-quiet --loop "$file" & disown ;;
application/pdf) okular "$file" & disown ;;
application/octet-stream)
if [[ "$file#*." == "MP3" ]]
then
mpv --really-quiet --loop "$file" & disown
fi
;;
*) lxterminal -e bicon.bin ranger --selectfile="$file" ;;
esac


if I run the first command with bicon.bin included the text of fzf handles the arabic filenames as expected, however the file name saved in .mylocateData file is somehow corrupted and I cannot open it. I tried some debuuging like ls "$(cat .mylocateData) to confirm.



but if I run my script without bicon.bin fzf shows the search but with arabic characters from left to right (in an ugly way ) but the file name is correctly saved regardless and it can be opened.



MY QUESTION is : how can I achieve both goals ? if it is a matter of reading the file some way other than cat ? or is it the use of fzf?



PS : I'm not interested in using dmenu, rofi ...etc, I love the way fzf works and I want to use it in my arch i3wm desktop










share|improve this question


























    1















    I am using a bash script to provide a search utlilty to locate and open files and directories.



    here is the script:



    #!/bin/bash
    lxterminal -e "bicon.bin locate /home /run/media |fzf >| ~/.mylocateData"
    # ^ this the problematic part
    sleep 0.4
    while [[ "$(pidof fzf)" != "" ]] ; do
    sleep 0.4
    done
    file="$(cat ~/.mylocateData)"
    if [[ -z "$file" ]] ; then exit ; fi
    mimetype=$(file --dereference --brief --mime-type "$file" )
    case "$mimetype" in
    inode/directory) lxterminal -e bicon.bin ranger "$file" ;;
    image/*) feh "$file" & disown ;;
    text/* | */xml) lxterminal -e vim "$file" ;;
    video/* | audio/*) mpv --really-quiet --loop "$file" & disown ;;
    application/pdf) okular "$file" & disown ;;
    application/octet-stream)
    if [[ "$file#*." == "MP3" ]]
    then
    mpv --really-quiet --loop "$file" & disown
    fi
    ;;
    *) lxterminal -e bicon.bin ranger --selectfile="$file" ;;
    esac


    if I run the first command with bicon.bin included the text of fzf handles the arabic filenames as expected, however the file name saved in .mylocateData file is somehow corrupted and I cannot open it. I tried some debuuging like ls "$(cat .mylocateData) to confirm.



    but if I run my script without bicon.bin fzf shows the search but with arabic characters from left to right (in an ugly way ) but the file name is correctly saved regardless and it can be opened.



    MY QUESTION is : how can I achieve both goals ? if it is a matter of reading the file some way other than cat ? or is it the use of fzf?



    PS : I'm not interested in using dmenu, rofi ...etc, I love the way fzf works and I want to use it in my arch i3wm desktop










    share|improve this question
























      1












      1








      1








      I am using a bash script to provide a search utlilty to locate and open files and directories.



      here is the script:



      #!/bin/bash
      lxterminal -e "bicon.bin locate /home /run/media |fzf >| ~/.mylocateData"
      # ^ this the problematic part
      sleep 0.4
      while [[ "$(pidof fzf)" != "" ]] ; do
      sleep 0.4
      done
      file="$(cat ~/.mylocateData)"
      if [[ -z "$file" ]] ; then exit ; fi
      mimetype=$(file --dereference --brief --mime-type "$file" )
      case "$mimetype" in
      inode/directory) lxterminal -e bicon.bin ranger "$file" ;;
      image/*) feh "$file" & disown ;;
      text/* | */xml) lxterminal -e vim "$file" ;;
      video/* | audio/*) mpv --really-quiet --loop "$file" & disown ;;
      application/pdf) okular "$file" & disown ;;
      application/octet-stream)
      if [[ "$file#*." == "MP3" ]]
      then
      mpv --really-quiet --loop "$file" & disown
      fi
      ;;
      *) lxterminal -e bicon.bin ranger --selectfile="$file" ;;
      esac


      if I run the first command with bicon.bin included the text of fzf handles the arabic filenames as expected, however the file name saved in .mylocateData file is somehow corrupted and I cannot open it. I tried some debuuging like ls "$(cat .mylocateData) to confirm.



      but if I run my script without bicon.bin fzf shows the search but with arabic characters from left to right (in an ugly way ) but the file name is correctly saved regardless and it can be opened.



      MY QUESTION is : how can I achieve both goals ? if it is a matter of reading the file some way other than cat ? or is it the use of fzf?



      PS : I'm not interested in using dmenu, rofi ...etc, I love the way fzf works and I want to use it in my arch i3wm desktop










      share|improve this question














      I am using a bash script to provide a search utlilty to locate and open files and directories.



      here is the script:



      #!/bin/bash
      lxterminal -e "bicon.bin locate /home /run/media |fzf >| ~/.mylocateData"
      # ^ this the problematic part
      sleep 0.4
      while [[ "$(pidof fzf)" != "" ]] ; do
      sleep 0.4
      done
      file="$(cat ~/.mylocateData)"
      if [[ -z "$file" ]] ; then exit ; fi
      mimetype=$(file --dereference --brief --mime-type "$file" )
      case "$mimetype" in
      inode/directory) lxterminal -e bicon.bin ranger "$file" ;;
      image/*) feh "$file" & disown ;;
      text/* | */xml) lxterminal -e vim "$file" ;;
      video/* | audio/*) mpv --really-quiet --loop "$file" & disown ;;
      application/pdf) okular "$file" & disown ;;
      application/octet-stream)
      if [[ "$file#*." == "MP3" ]]
      then
      mpv --really-quiet --loop "$file" & disown
      fi
      ;;
      *) lxterminal -e bicon.bin ranger --selectfile="$file" ;;
      esac


      if I run the first command with bicon.bin included the text of fzf handles the arabic filenames as expected, however the file name saved in .mylocateData file is somehow corrupted and I cannot open it. I tried some debuuging like ls "$(cat .mylocateData) to confirm.



      but if I run my script without bicon.bin fzf shows the search but with arabic characters from left to right (in an ugly way ) but the file name is correctly saved regardless and it can be opened.



      MY QUESTION is : how can I achieve both goals ? if it is a matter of reading the file some way other than cat ? or is it the use of fzf?



      PS : I'm not interested in using dmenu, rofi ...etc, I love the way fzf works and I want to use it in my arch i3wm desktop







      bash shell-script arch-linux fzf






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Feb 13 at 11:29









      Neo MosaidNeo Mosaid

      10319




      10319




















          0






          active

          oldest

          votes











          Your Answer








          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "106"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: false,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: null,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f500382%2fhow-to-use-fzf-with-bidirectional-languages%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes















          draft saved

          draft discarded
















































          Thanks for contributing an answer to Unix & Linux Stack Exchange!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f500382%2fhow-to-use-fzf-with-bidirectional-languages%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown






          Popular posts from this blog

          How to check contact read email or not when send email to Individual?

          Bahrain

          Postfix configuration issue with fips on centos 7; mailgun relay