62 lines
1.3 KiB
Markdown
62 lines
1.3 KiB
Markdown
# joomer-ftxui-file-browser
|
|
Terminal User Interface for file browsing using ftxui
|
|
|
|
# Demonstrates
|
|
- file navigation
|
|
|
|
# Usage
|
|
|
|
```
|
|
joomer-ftxui-file-browser [path]
|
|
[path] - path to start browsing
|
|
- use arrow keys or mouse to navigate directories
|
|
- alternatively you can press the numbers on your keyboard to select directories
|
|
```
|
|
|
|
# Build
|
|
```
|
|
learndir/
|
|
└── FTXUI/
|
|
└── joomer-ftxui-file-browser/
|
|
```
|
|
|
|
## Ubuntu Linux
|
|
```
|
|
mkdir learndir
|
|
cd learndir
|
|
git clone https://github.com/ArthurSonzogni/FTXUI
|
|
mkdir -p FTXUI/build
|
|
cd FTXUI/build
|
|
cmake ..
|
|
cmake --build . --config Release
|
|
cd ../..
|
|
git clone https://git.indoodle.com/jason/joomer-ftxui-file-browser.git
|
|
cd joomer-ftxui-file-browser
|
|
make all
|
|
bin/Linux/release/joomer-ftxui-file-browser
|
|
```
|
|
|
|
## Windows
|
|
- Download Visual Studio Community Edition
|
|
- Run VisualStudioSetup.exe
|
|
- Workload = [x] Desktop development with C++
|
|
- Individual components = [x] Git For Windows
|
|
|
|
Run **x64 Native Tools Command Prompt for VS**
|
|
```
|
|
mkdir learndir
|
|
cd learndir
|
|
git clone https://github.com/ArthurSonzogni/FTXUI
|
|
mkdir -p FTXUI\build
|
|
cd FTXUI\build
|
|
cmake ..
|
|
cmake --build . --config Release
|
|
cd ..\..
|
|
git clone https://git.indoodle.com/jason/joomer-ftxui-file-browser.git
|
|
cd joomer-ftxui-file-browser
|
|
msbuild joomer-ftxui-file-browser.vcxproj
|
|
bin\Release\joomer-ftxui-file-browser.exe
|
|
```
|
|
|
|
|