colorls 1.5.0 → 1.5.1.pre.274
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +12 -4
- data/lib/yaml/file_aliases.yaml +6 -0
- data/lib/yaml/files.yaml +1 -0
- data/man/colorls.1 +1 -1
- metadata +8 -8
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d4ea2cc59c7de1371d6d4bf3fb69c53b82c383107c4da12e5a95809d54eb5834
|
|
4
|
+
data.tar.gz: 63423b15bb8f31540f886871ef7b4ba4f0f2be869396f0a6869912cc63cf636b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a65f27cbe75ed71baa94125fb59f58add179f2b33524b8d7ee685498a63178fedf103a7de2b37b9088d23af247b4180a3c3a1783f3bc52f24dd6d2ee92930e68
|
|
7
|
+
data.tar.gz: f06bd6e4736d2aa6220cd0c55a015e11e6cd4864933db4f9ce88b2e0fb59b2e7260f71b35baee1025c428270f73b69aca18e5d18e0d1f8c648a9e4fde7708391
|
data/README.md
CHANGED
|
@@ -22,9 +22,9 @@ A Ruby script that colorizes the `ls` output with color and icons. Here are the
|
|
|
22
22
|
- `-A` (or) `--almost-all`
|
|
23
23
|
- `-d` (or) `--dirs`
|
|
24
24
|
- `-f` (or) `--files`
|
|
25
|
-
-
|
|
25
|
+
- `--help`
|
|
26
26
|
- `-l` (or) `--long`
|
|
27
|
-
-
|
|
27
|
+
- `--report`
|
|
28
28
|
- `--tree` (or) `--tree=[DEPTH]`
|
|
29
29
|
- `--gs` (or) `--git-status`
|
|
30
30
|
- `--sd` (or) `--sort-dirs` or `--group-directories-first`
|
|
@@ -67,7 +67,7 @@ Man pages have been added. Checkout `man colorls`.
|
|
|
67
67
|
|
|
68
68
|

|
|
69
69
|
|
|
70
|
-
- With
|
|
70
|
+
- With `--help` : Prints a very helpful help menu
|
|
71
71
|
|
|
72
72
|

|
|
73
73
|
|
|
@@ -75,7 +75,7 @@ Man pages have been added. Checkout `man colorls`.
|
|
|
75
75
|
|
|
76
76
|

|
|
77
77
|
|
|
78
|
-
- With
|
|
78
|
+
- With `--report` : Shows brief report about number of files and folders shown
|
|
79
79
|
|
|
80
80
|

|
|
81
81
|
|
|
@@ -174,6 +174,14 @@ You can overwrite the existing icons and colors mapping by copying the yaml file
|
|
|
174
174
|
|
|
175
175
|
Let's say that you're using the dark color scheme and would like to change the color of untracked file (`??`) in the `--git-status` flag to yellow. Copy the defaut `dark_colors.yaml` and change it.
|
|
176
176
|
|
|
177
|
+
Check if the `~/.config/colorls` directory exists. If it doesn't exist, create it using the following command:
|
|
178
|
+
|
|
179
|
+
```sh
|
|
180
|
+
mkdir -p ~/.config/colorls
|
|
181
|
+
```
|
|
182
|
+
|
|
183
|
+
And then
|
|
184
|
+
|
|
177
185
|
```sh
|
|
178
186
|
cp $(dirname $(gem which colorls))/yaml/dark_colors.yaml ~/.config/colorls/dark_colors.yaml
|
|
179
187
|
```
|
data/lib/yaml/file_aliases.yaml
CHANGED
|
@@ -6,6 +6,7 @@ flac: audio
|
|
|
6
6
|
m4a: audio
|
|
7
7
|
mp3: audio
|
|
8
8
|
ogg: audio
|
|
9
|
+
opus: audio
|
|
9
10
|
wav: audio
|
|
10
11
|
editorconfig: conf
|
|
11
12
|
scss: css
|
|
@@ -23,11 +24,14 @@ gitconfig: git
|
|
|
23
24
|
gitignore: git
|
|
24
25
|
gitignore_global: git
|
|
25
26
|
lhs: hs
|
|
27
|
+
avif: image
|
|
26
28
|
bmp: image
|
|
27
29
|
gif: image
|
|
30
|
+
heif: image
|
|
28
31
|
ico: image
|
|
29
32
|
jpeg: image
|
|
30
33
|
jpg: image
|
|
34
|
+
jxl: image
|
|
31
35
|
odg: image
|
|
32
36
|
png: image
|
|
33
37
|
pxm: image
|
|
@@ -88,7 +92,9 @@ ods: xls
|
|
|
88
92
|
xlsx: xls
|
|
89
93
|
xul: xml
|
|
90
94
|
yaml: yml
|
|
95
|
+
7z: zip
|
|
91
96
|
gz: zip
|
|
92
97
|
rar: zip
|
|
93
98
|
tar: zip
|
|
94
99
|
tgz: zip
|
|
100
|
+
xz: zip
|
data/lib/yaml/files.yaml
CHANGED
data/man/colorls.1
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
.\" generated with Ronn/v0.7.3
|
|
2
2
|
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
|
3
3
|
.
|
|
4
|
-
.TH "COLORLS" "1" "
|
|
4
|
+
.TH "COLORLS" "1" "July 2024" "colorls 1.5.0" "colorls Manual"
|
|
5
5
|
.
|
|
6
6
|
.SH "NAME"
|
|
7
7
|
\fBcolorls\fR \- list directory contents with colors and icons
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: colorls
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.5.
|
|
4
|
+
version: 1.5.1.pre.274
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Athitya Kumar
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-07-
|
|
11
|
+
date: 2024-07-12 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: addressable
|
|
@@ -302,7 +302,7 @@ dependencies:
|
|
|
302
302
|
- - "~>"
|
|
303
303
|
- !ruby/object:Gem::Version
|
|
304
304
|
version: 0.22.0
|
|
305
|
-
description:
|
|
305
|
+
description:
|
|
306
306
|
email:
|
|
307
307
|
- athityakumar@gmail.com
|
|
308
308
|
executables:
|
|
@@ -378,12 +378,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
378
378
|
version: 2.6.0
|
|
379
379
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
380
380
|
requirements:
|
|
381
|
-
- - "
|
|
381
|
+
- - ">"
|
|
382
382
|
- !ruby/object:Gem::Version
|
|
383
|
-
version:
|
|
383
|
+
version: 1.3.1
|
|
384
384
|
requirements: []
|
|
385
|
-
rubygems_version: 3.
|
|
386
|
-
signing_key:
|
|
385
|
+
rubygems_version: 3.3.27
|
|
386
|
+
signing_key:
|
|
387
387
|
specification_version: 4
|
|
388
388
|
summary: A Ruby CLI gem that beautifies the terminal's ls command, with color and
|
|
389
389
|
font-awesome icons.
|