lsd/README.md

96 lines
2.7 KiB
Markdown
Raw Normal View History

2018-11-26 12:37:12 +00:00
# LSD (LSDeluxe)
2018-11-24 11:10:10 +00:00
2018-11-25 16:42:23 +00:00
[![license](http://img.shields.io/badge/license-Apache%20v2-orange.svg)](https://raw.githubusercontent.com/Peltoche/ical-rs/master/LICENSE)
2018-11-26 12:24:14 +00:00
[![Build Status](https://travis-ci.org/Peltoche/lsd.svg?branch=master)](https://travis-ci.org/Peltoche/lsd)
2018-11-25 16:42:23 +00:00
[![Latest version](https://img.shields.io/crates/v/lsd.svg)](https://crates.io/crates/lsd)
2018-12-07 12:31:00 +00:00
[![Snap Status](https://build.snapcraft.io/badge/Peltoche/lsd.svg)](https://build.snapcraft.io/user/Peltoche/lsd)
2018-11-25 16:42:23 +00:00
2018-11-25 16:37:12 +00:00
# Table of Contents
- [Description](#description)
- [Screenshot](#screenshot)
- [Installation](#installation)
* [Prerequisites](#prerequisites)
* [From Sources](#from-sources)
* [From Binaries](#from-binaries)
- [Configurations](#configurations)
* [Required](#required)
* [Optional](#optional)
- [Benchmark](#benchmark)
- [Todo](#todo)
2018-11-24 11:10:10 +00:00
## Description
2018-11-24 16:57:04 +00:00
This project is heavily inspired by the super [colorls](https://github.com/athityakumar/colorls)
2018-12-07 13:08:51 +00:00
project but with some little differences. For example it is written in rust and not in ruby which makes it really faster ([see the benchmarks](#benchmark)).
2018-11-24 11:21:32 +00:00
2018-11-24 11:31:28 +00:00
## Screenshot
![image](https://raw.githubusercontent.com/Peltoche/lsd/assets/screen_lsd.png)
## Installation
2018-12-04 14:13:19 +00:00
### Prerequisites
Install the patched fonts of powerline nerd-font and/or font-awesome. Have a look at the [Nerd Font README](https://github.com/ryanoasis/nerd-fonts/blob/master/readme.md) for more installation instructions. Don't forget to setup your terminal in order to use the correct font.
2018-12-04 14:13:19 +00:00
### Archlinux
(coming soon)
### From Sources
With Rust's package manager cargo, you can install fd via:
2018-12-04 14:13:19 +00:00
```sh
cargo install fd-find
2018-12-04 14:13:19 +00:00
```
### From Binaries
The [release page](https://github.com/Peltoche/lsd/releases) includes precompiled binaries for Linux and macOS.
2018-12-04 14:09:47 +00:00
## Configurations
### Required
In order to use lsd instead of the default ls you need to add this to you shell
configuration file (~/.bashrc, ~/.zshrc, etc.) :
```sh
alias ls='lsd'
```
### Optional
Some examples of useful aliases. You can add this to you shell configuration
file (~/.bashrc, ~/.zshrc, etc.) just under the alias above :
```sh
2018-12-06 13:10:04 +00:00
alias l='ls -l'
alias la='ls -a'
alias lla='ls -la'
alias lt='ls --tree'
```
2018-11-25 16:31:46 +00:00
## Benchmark
Result from `hyperfine --warmup 10 'lsd -la /etc/*' 'colorls -la /etc/*' --export-markdown out.md`:
| Command | Mean [ms] | Min…Max [ms] |
|:---|---:|---:|
| `lsd -la /etc/*` | 11.0 ± 0.5 | 9.9…13.0 |
| `colorls -la /etc/*` | 503.3 ± 5.6 | 494.6…513.4 |
2018-11-24 11:21:32 +00:00
## TODO
- [x] Handle the `-l` option (used by default for now)
- [x] Handle the `-a` option
2018-11-24 12:05:44 +00:00
- [x] Add icons before the files names
2018-12-01 15:53:49 +00:00
- [x] Handle all the file types (block/char/pipe/etc)
2018-12-04 13:54:56 +00:00
- [x] Handle the tree (`--tree`) output option
2018-11-24 11:21:32 +00:00
- [ ] Handle the json (`--json`) output option