Skip to content

Commit

Permalink
Merge branch 'master' into windows
Browse files Browse the repository at this point in the history
  • Loading branch information
mattn committed Oct 5, 2020
2 parents 503f937 + ea35721 commit bd00002
Show file tree
Hide file tree
Showing 23 changed files with 1,804 additions and 1,742 deletions.
43 changes: 0 additions & 43 deletions .github/githooks/pre-push

This file was deleted.

14 changes: 13 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
![GitHub go.mod Go version](https://img.shields.io/github/go-mod/go-version/Yash-Handa/logo-ls?style=flat-square)
![GitHub tag (latest SemVer)](https://img.shields.io/github/v/tag/Yash-Handa/logo-ls?sort=semver&style=flat-square)
![PRs](https://img.shields.io/badge/PRs-welcome-56cc14?style=flat-square)
[![HitCount](http://hits.dwyl.com/{Yash-Handa}/{logo-ls}.svg)](http://hits.dwyl.com/{Yash-Handa}/{logo-ls})
[![HitCount](http://hits.dwyl.com/Yash-Handa/logo-ls.svg)](http://hits.dwyl.com/Yash-Handa/logo-ls)
![AUR](https://img.shields.io/aur/version/logo-ls?style=flat-square&logo=Arch-Linux&labelColor=abcdef&label=AUR)
![deb](https://img.shields.io/badge/-Deb%20Package-A81D33?style=flat-square&logo=Debian&link=https://github.com/Yash-Handa/logo-ls/releases/)
![rpm](https://img.shields.io/badge/-RPM%20Package-EE0000?style=flat-square&logo=Red-Hat&link=https://github.com/Yash-Handa/logo-ls/releases/)
![linux](https://img.shields.io/badge/-Linux%20Binary-FCC624?style=flat-square&logo=Linux&logoColor=000000&link=https://github.com/Yash-Handa/logo-ls/releases/)
Expand Down Expand Up @@ -45,6 +46,7 @@ Command and Arguments supported are listed in [HELP.md](/HELP.md)
- [Prerequisites](#prerequisites)
- [Installation](#installation)
- [Debian (.deb package)](#debian-deb-package)
- [Arch Linux (AUR)](#arch-linux)
- [Red Hat (.rpm package)](#red-hat-rpm-package)
- [MacOS (Darwin)](#macos-darwin)
- [Linux](#linux)
Expand Down Expand Up @@ -250,6 +252,16 @@ Download the `.rpm` package from [Github Release Page](https://github.com/Yash-H

Use the `rpm -i path/to/downloaded/resource/` to install the binary and the manpage

### Arch linux

Simply run `yay -S logo-ls`. (Or use the AUR helper of your choice)<br><br>
Alternatively you can clone the PKGBUILD and build the package manually:
```bash
git clone https://aur.archlinux.org/logo-ls.git
cd logo-ls
makepkg -si
```

### MacOS (Darwin)

To install `logo-ls` on darwin you have to download the binary. Support for Homebrew will come soon
Expand Down
61 changes: 61 additions & 0 deletions assets/iconsDir.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
package assets

var Icon_Dir = map[string]*Icon_Info{
"config": Icon_Set["dir-config"],
".config": Icon_Set["dir-config"],
"configs": Icon_Set["dir-config"],
"configuration": Icon_Set["dir-config"],
"configurations": Icon_Set["dir-config"],
"settings": Icon_Set["dir-config"],
".settings": Icon_Set["dir-config"],
"META-INF": Icon_Set["dir-config"],
"controller": Icon_Set["dir-controller"],
"controllers": Icon_Set["dir-controller"],
"service": Icon_Set["dir-controller"],
"services": Icon_Set["dir-controller"],
"provider": Icon_Set["dir-controller"],
"providers": Icon_Set["dir-controller"],
".git": Icon_Set["dir-git"],
"githooks": Icon_Set["dir-git"],
".githooks": Icon_Set["dir-git"],
"submodules": Icon_Set["dir-git"],
".submodules": Icon_Set["dir-git"],
".github": Icon_Set["dir-github"],
"node_modules": Icon_Set["dir-npm"],
"include": Icon_Set["dir-include"],
"includes": Icon_Set["dir-include"],
"_includes": Icon_Set["dir-include"],
"import": Icon_Set["dir-import"],
"imports": Icon_Set["dir-import"],
"imported": Icon_Set["dir-import"],
"uploads": Icon_Set["dir-upload"],
"upload": Icon_Set["dir-upload"],
"downloads": Icon_Set["dir-download"],
"download": Icon_Set["dir-download"],
"auth": Icon_Set["dir-secure"],
"authentication": Icon_Set["dir-secure"],
"secure": Icon_Set["dir-secure"],
"security": Icon_Set["dir-secure"],
"cert": Icon_Set["dir-secure"],
"certs": Icon_Set["dir-secure"],
"certificate": Icon_Set["dir-secure"],
"certificates": Icon_Set["dir-secure"],
"ssl": Icon_Set["dir-secure"],
"images": Icon_Set["dir-images"],
"image": Icon_Set["dir-images"],
"pics": Icon_Set["dir-images"],
"pic": Icon_Set["dir-images"],
"pictures": Icon_Set["dir-images"],
"picture": Icon_Set["dir-images"],
"img": Icon_Set["dir-images"],
"icons": Icon_Set["dir-images"],
"icon": Icon_Set["dir-images"],
"ico": Icon_Set["dir-images"],
"screenshot": Icon_Set["dir-images"],
"screenshots": Icon_Set["dir-images"],
".env": Icon_Set["dir-environment"],
".environment": Icon_Set["dir-environment"],
"env": Icon_Set["dir-environment"],
"environment": Icon_Set["dir-environment"],
"environments": Icon_Set["dir-environment"],
}

0 comments on commit bd00002

Please sign in to comment.