An open API service indexing awesome lists of open source software.

https://github.com/kivimango/twin-commander

Yet another text mode twin-panel file manager
https://github.com/kivimango/twin-commander

command-line-app command-line-tool file-manager filemanager redox-os rust rust-lang sysadmin-tool text-user-interface tui

Last synced: 10 months ago
JSON representation

Yet another text mode twin-panel file manager

Awesome Lists containing this project

README

          

# twin-commander

![ci-status](https://github.com/kivimango/twin-commander/actions/workflows/ci.yaml/badge.svg "CI Badge")

A text mode twin-panel file manager for Redox OS inspired by Midnight and Total Commander.

![Alt text](https://raw.github.com/kivimango/twin-commander/master/res/twc_preview_1.png "Preview")

## About the project

This is my pet project for learning the Rust programming language.
I develop this application to be my daily driver for managing files and for showcase some custom programs written in Rust and fill the gaps of the lacking/missing applications in the userspace for the Redox OS.
If you are a fan of 'Lets Reimplement The Whole Universe in Rust' too, stay with me

## Features

- Basic everyday CRUD file operations
- compact, small footprint (memory usage around ~3 MB, final binary size ~ 700kb)

See the [Issues](https://github.com/kivimango/twin-commander/issues) for upcoming features, like:

- Themes
- Archives support
- Remote protocols
- Plugins

and many more (who knows?)

## Supported platforms

Twin Commander currently supports only GNU/Linux distributions and the [Redox OS](https://www.redox-os.org/).

Windows is not supported due to one of the backend of the terminal handling library, specifically termion (termion only supports GNU/Linux and Redox OS).

The other backend of tui-rs, crossterm has no support for Redox OS, and i want to use this app
in Redox OS.

So, choices are made.

## Getting Started

To set up a local copy of the project on your machine, follow the next steps:

Clone the repository:

```sh
git clone https://github.com/kivimango/twin-commander.git
```

or using the tarball:

```sh
# Download the tarball
wget https://github.com/kivimango/twin-commander/archive/refs/heads/master.zip

# Unzip it
unzip master.zip

# and make your way into the project's folder with
cd twin-commander
```

## Building from source

Please refer the Getting started section.
Once your local copy of the project is set up, you can build the project from source by running the

```sh
# for debug mode
cargo build
```

or the

```sh
# for release mode
cargo build -r
```

command.

## Installation

Im planning releasing on crates.io once a MVP is ready.

When it is published, the following command

```sh
cargo install twin-commander
```

will install a binary of this application.

## Development

Want to contribute? Great!

## License

Apache License 2.0