Edex-ui: How I Config eDEX-UI For Cygwin64

Created on 10 Jul 2020  路  3Comments  路  Source: GitSquared/edex-ui

I Have A Windows 8 with cygwin on D:/cygwin64

the shell = D:/cygwin64/bin/bash.exe

my config :

{
    "shell": "D:\\cygwin64\\bin\\bash.exe",
    "cwd": "D:\\cygwin64\\home\\VHenrique05",
    "env": "D:\\cygwin64\\bin",
    "keyboard": "pt-BR",
    "theme": "tron",
    "termFontSize": 15,
    "audio": true,
    "disableFeedbackAudio": false,
    "pingAddr": "1.1.1.1",
    "port": 3000,
    "monitor": 0,
    "nointro": false,
    "nocursor": false,
    "iface": "Npcap Loopback Adapter",
    "allowWindowed": true,
    "excludeThreadsFromToplist": true,
    "hideDotfiles": false,
    "fsListView": false,
    "experimentalGlobeFeatures": false,
    "experimentalFeatures": false
}

but when i open eDEX-UI if i try a command :

$ ls

he say bash: ls: command not found

how i fix ?

question

Most helpful comment

Fixed !
I use :

Config :

{
    "shell": "D:\\cygwin64\\bin\\bash.exe --login -i",
    "cwd": "C:\\Users\\Vitor Henrique\\AppData\\Roaming\\eDEX-UI",
    "env": ""
}

and ~/.bashrc :

 $ set TERM "cygwin"

It's all right !

All 3 comments

I'm not sure how cygwin works, but i suggest you let env be empty and try just putting "bash.exe" in the shell setting.
Edex's env auto-forwarding might pass your $PATH better.

when i change to "shell": "D:\\cygwin64\\bin\\bash.exe" opens but not found commands.
when i change to "shell": "bash.exe" don't open
with "env": "" and "cwd": "D:\\cygwin64\\home\\VHenrique05"

Fixed !
I use :

Config :

{
    "shell": "D:\\cygwin64\\bin\\bash.exe --login -i",
    "cwd": "C:\\Users\\Vitor Henrique\\AppData\\Roaming\\eDEX-UI",
    "env": ""
}

and ~/.bashrc :

 $ set TERM "cygwin"

It's all right !

Was this page helpful?
0 / 5 - 0 ratings

Related issues

clragon picture clragon  路  6Comments

maggot99999 picture maggot99999  路  5Comments

GitSquared picture GitSquared  路  6Comments

clragon picture clragon  路  6Comments

tztl0 picture tztl0  路  4Comments