All Projects → gardebring → PowerColorLS

gardebring / PowerColorLS

Licence: MIT license
PowerShell script to display a colorized directory and file listing with icons

Programming Languages

powershell
5483 projects

Projects that are alternatives of or similar to PowerColorLS

Colorls
A Ruby gem that beautifies the terminal's ls command, with color and font-awesome icons. 🎉
Stars: ✭ 3,896 (+11031.43%)
Mutual labels:  color, icons, ls
Lsd
The next gen ls command
Stars: ✭ 6,655 (+18914.29%)
Mutual labels:  color, icons, ls
lux
A Swift library with a dedicated command-line tool to highlight plain code (e.g. for terminal output), HTML files code blocks or attributed strings (e.g. for macOS or iOS apps)
Stars: ✭ 22 (-37.14%)
Mutual labels:  color, command-line-tool
tasarimcilar-ve-yazilimcilar-icin-kaynak-arsivim
Tasarım ve yazılım ile ilgili 2017 yılından günümüze kadar geçen zamanda toplamış olduğum arşivimi sizle ile paylaşıyorum. Ne mi var her şey...
Stars: ✭ 276 (+688.57%)
Mutual labels:  color, icons
terminal-style
🎨 Return your terminal message in style! Change the text style, text color and text background color from the terminal, console or shell interface with ANSI color codes. Support for Laravel and Composer.
Stars: ✭ 16 (-54.29%)
Mutual labels:  color, command-line-tool
Dctb Links
My Personal Links
Stars: ✭ 65 (+85.71%)
Mutual labels:  color, icons
przm
🎨 A simple, yet feature rich color picker and manipulator
Stars: ✭ 19 (-45.71%)
Mutual labels:  color, command-line-tool
Przm
🎨 A simple, yet feature rich color picker and manipulator
Stars: ✭ 17 (-51.43%)
Mutual labels:  color, command-line-tool
Iconhandler
Tint you Icons, change the size, apply alpha color and set a position easily. 👓
Stars: ✭ 59 (+68.57%)
Mutual labels:  color, icons
Drawablecolorchange
Android Library to dynamically change color of drawable.
Stars: ✭ 101 (+188.57%)
Mutual labels:  color, icons
reviewio
code review stats for
Stars: ✭ 22 (-37.14%)
Mutual labels:  command-line-tool
visioStencils
My 2,700 visio 🎨 shapes, stencils, symbols, and icons collection to visually represent IT infrastructure
Stars: ✭ 43 (+22.86%)
Mutual labels:  icons
svelte-simple-icons
📦 This package provides the Simple Icons packaged as a set of Svelte components.
Stars: ✭ 27 (-22.86%)
Mutual labels:  icons
SketchSVG
Have icons in a Sketch file but don't want to manually extract and compress them as SVGs? Let our SketchSVG tool do it!
Stars: ✭ 23 (-34.29%)
Mutual labels:  icons
cati
Cati Unix Package Manager
Stars: ✭ 19 (-45.71%)
Mutual labels:  command-line-tool
dotfiles
dotfiles symbolic links management CLI
Stars: ✭ 156 (+345.71%)
Mutual labels:  command-line-tool
PoShLog
🔩 PoShLog is PowerShell cross-platform logging module. It allows you to log structured event data into console, file and much more places easily. It's built upon great C# logging library Serilog - https://serilog.net/
Stars: ✭ 108 (+208.57%)
Mutual labels:  powershell-module
Lineage-Icons
LineageOS Icon Pack
Stars: ✭ 37 (+5.71%)
Mutual labels:  icons
awsicons
Open source SVG icon library with over 500+ icons
Stars: ✭ 60 (+71.43%)
Mutual labels:  icons
icon-pipeline
🚚 SVG icon pipeline - Optimize icons & build SVG sprites
Stars: ✭ 43 (+22.86%)
Mutual labels:  icons

PowerColorLS

A PowerShell module that displays a colorized directory and file listing with icons. Inspired by colorls

Screenshot 1

Overview

PowerColorLS is a PowerShell module that displays a colorized directory and file listing with icons in the terminal. For the module to work, you must first install Terminal-Icons and setup the Nerd Fonts

Installation

To install the module from the PowerShell Gallery:

Install-Module -Name PowerColorLS -Repository PSGallery

Example usage

Import-Module PowerColorLS
PowerColorLS

List all files and directories including hidden ones and ones starting with '.' in long listing (wide) format

PowerColorLS -a -l

Screenshot 2

List all files and directories including hidden ones and ones starting with '.' in long listing (wide) format and also include directory size

PowerColorLS -a -l --show-directory-size

Screenshot 3

List files only, followed by list directories only

PowerColorLS -f
PowerColorLS -d

Screenshot 4

Listing files in a git directory displays git status as well

PowerColorLS

Screenshot 5

Help

To get help about available arguments, run:

PowerColorLS --help

Output of help command:

Usage: PowerColorLs [OPTION]... [FILE]...
List information about files and directories (the current directory by default).
Entries will be sorted alphabetically if no sorting option is specified.

        -a, --all               do not ignore hidden files and files starting with .
        -l, --long              use a long listing format
        -r, --report            shows a brief report
        -1                      list one file per line
        -d, --dirs              show only directories
        -f, --files             show only files
        -ds, -sds, --sds, --show-directory-size
                                show directory size (can take a long time)
        -hi, --hide-icons       hide icons

sorting options:

        -sd, --sort-dirs, --group-directories-first
                                sort directories first
        -sf, --sort-files, --group-files-first
                                sort files first
        -t, -st, --st
                                sort by modification time, newest first

general options:

        -h, --help         prints this help
        -v, --version      show version information

Alias to ls

Set-Alias -Name ls -Value PowerColorLS -Option AllScope
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].