All Projects β†’ trapd00r β†’ Ls

trapd00r / Ls

ls on steroids

Programming Languages

perl
6916 projects
bash
514 projects

Projects that are alternatives of or similar to Ls

Zeus
πŸ”­ A modern cross platform `ls` with powerful searching and querying capabilities to scale your productivity to the moon πŸš€ (and yeah it has file explorer like capabilities too 🀫)
Stars: ✭ 75 (-83.62%)
Mutual labels:  commandline, filesystem
Fd
A simple, fast and user-friendly alternative to 'find'
Stars: ✭ 19,851 (+4234.28%)
Mutual labels:  terminal, filesystem
Nord Gnome Terminal
An arctic, north-bluish clean and elegant GNOME Terminal color theme.
Stars: ✭ 258 (-43.67%)
Mutual labels:  terminal, zsh
Typewritten
A minimal, lightweight, informative zsh prompt theme
Stars: ✭ 442 (-3.49%)
Mutual labels:  terminal, zsh
Termux Style
Simple script to change color-schemes and fonts for Termux.
Stars: ✭ 400 (-12.66%)
Mutual labels:  terminal, zsh
Cordless
The Discord terminal client you never knew you wanted.
Stars: ✭ 1,391 (+203.71%)
Mutual labels:  commandline, terminal
Caporal.js
A full-featured framework for building command line applications (cli) with node.js
Stars: ✭ 3,279 (+615.94%)
Mutual labels:  terminal, zsh
Ohmyzsh
πŸ™ƒ A delightful community-driven (with 1900+ contributors) framework for managing your zsh configuration. Includes 300+ optional plugins (rails, git, macOS, hub, docker, homebrew, node, php, python, etc), 140+ themes to spice up your morning, and an auto-update tool so that makes it easy to keep up with the latest updates from the community.
Stars: ✭ 138,057 (+30043.45%)
Mutual labels:  terminal, zsh
Cw
The best way to tail AWS CloudWatch Logs from your terminal
Stars: ✭ 368 (-19.65%)
Mutual labels:  terminal, zsh
Tsukae
πŸ§‘β€πŸ’»πŸ“Š Show off your most used shell commands
Stars: ✭ 345 (-24.67%)
Mutual labels:  commandline, terminal
Jaromail
A commandline tool to easily and privately handle your e-mail
Stars: ✭ 86 (-81.22%)
Mutual labels:  commandline, zsh
Dstask
Single binary terminal-based TODO manager with git-based sync + markdown notes per task
Stars: ✭ 431 (-5.9%)
Mutual labels:  terminal, zsh
Tio
tio - A simple TTY terminal I/O application
Stars: ✭ 489 (+6.77%)
Mutual labels:  commandline, terminal
Comfy Table
πŸ”Ά Build beautiful terminal tables with automatic content wrapping
Stars: ✭ 156 (-65.94%)
Mutual labels:  commandline, terminal
Pxltrm
πŸ–ŒοΈ pxltrm - [WIP] A pixel art editor inside the terminal
Stars: ✭ 459 (+0.22%)
Mutual labels:  commandline, terminal
Chalk
πŸ– Terminal string styling done right
Stars: ✭ 17,566 (+3735.37%)
Mutual labels:  commandline, terminal
Nord Alacritty
An arctic, north-bluish clean and elegant Alacritty color scheme.
Stars: ✭ 238 (-48.03%)
Mutual labels:  terminal, zsh
Dracula Theme
πŸ§›πŸ»β€β™‚οΈ One theme. All platforms.
Stars: ✭ 17,480 (+3716.59%)
Mutual labels:  terminal, zsh
Nord Dircolors
An arctic, north-bluish clean and elegant dircolors theme.
Stars: ✭ 328 (-28.38%)
Mutual labels:  terminal, zsh
Dotfiles
My personal dotfiles
Stars: ✭ 400 (-12.66%)
Mutual labels:  terminal, zsh

Donate - Every tiny cent helps a lot!

ls++ - colorized ls on steroids

GNU/Linux screenshot

USAGE

ls++ [OPTION]... [FILE]...

OPTIONS

Not known parameters will be passed through to ls, so to show hidden files, -a or -A might be added. See ls(1) for more information.

Views

--pf    permissions, file
--psf   permissions, size, file
--tpf   time, permissions, file
--tpsf  time, permissions, size, file (default)
--ptsf  permissions, time, size, file
--potsf permissions, owners, time, size, file

INSTALLATION

Packages exist for several linux distributions:

Archlinux

pacman -S ls++

SUSE

yast -i ls++

Other / Bleeding edge

I recommend using the cpanminus cpan client and doing a

alias cpan=cpanm

in your shellrc. The program will be there in your normal repositories. :)

# cpanm Term::ExtendedColor File::LsColor
$ git clone git://github.com/trapd00r/ls--.git
$ cd ls--
$ perl Makefile.PL
$ make && su -c 'make install'

$ cp ls++.conf $HOME/.ls++.conf

Install from git locally in your $HOME:

$ mkdir -p $HOME/lib/perl5
$ export PERL5LIB=${HOME}/lib/perl5
$ export PERL_MM_OPT="INSTALL_BASE=${PERL5LIB}"
$ cpanm Term::ExtendedColor File::LsColor

$ git clone git://github.com/trapd00r/ls--.git
$ cd ls--
$ perl Makefile.PL
$ make
$ make install

$ cp ls++.conf $HOME/ls++.conf

Install from CPAN locally; managing dependencies automatically:

$ mkdir -p $HOME/lib/perl5
$ export PERL5LIB=${HOME}/lib/perl5
$ export PERL_MM_OPT="INSTALL_BASE=${PERL5LIB}"
$ cpan App::lsplusplus

If you want to install it globaly, you just skip the first three steps and run the cpan command as root.

Mac OS X Installation

# cpan Term::ExtendedColor File::LsColor
$ git clone git://github.com/trapd00r/ls--.git
$ cd ls--
$ perl Makefile.PL
$ make && sudo 'make install'

$ cp ls++.conf $HOME/.ls++.conf

HISTORY

I wanted to re-arrange the ls output just like one can do with the -printf option to GNU find. Sadly, there are no -printf option available for ls, so I threw together a quick hack called 'pilsner' that did what I wanted and nothing more, nothing less. Not very useful to others.

Mattias SvanstrΓΆm crafted together the 'l' application which did basically the same thing but more elegant and with a nice twist; it calculated relative mtimes.

I really liked that idea, but there were a couple of annoyances, so I forked the project and added a configuration file, support for flags that'll control the different views and possibility to ignore as well as highlight specific files.

AUTHOR

\ \ | / /
 \ \ - /
  \ | /
  (O O)
  ( < )
  (-=-)

Magnus Woldrich
CPAN ID: WOLDRICH
[email protected]
http://japh.se

CONTRIBUTORS

Mattias SvanstrΓΆm

Gregory Sacre

Shelby Munsch - extensive macos work

COPYRIGHT

Copyright 2010, 2011, 2018 the ls++ AUTHOR and CONTRIBUTORS as listed above.

SEE ALSO

l

pilsner

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].